Context managers for controlling exception chaining.
Project description
Provides a different way of controlling exception chaining (the implicit __context__ and explicit __cause__) beyond just raise ... from ....
Versioning
This library’s version numbers follow the SemVer 2.0.0 specification.
Installation
pip install exceptioncontext
Usage
Import as needed:
from exceptioncontext import cause, context, suppress_context
Explicitly chain exception (set __cause__):
with cause(Exception("foo")):
raise Exception("bar")
Override implicitly chained exception (set __context__):
with context(Exception("foo")):
raise Exception("bar")
Manually control context suppression (set __suppress_context__):
with suppress_context(False):
raise Exception("foo")
exceptioncontext makes exception chaining fully independent of the raise statement, and freely composable with other code:
with cause(earlier_exception):
helper_function()
Portability
Portable to all releases of both Python 3 and Python 2.
(The oldest tested is 2.5, but it will likely work as far back as 2.2 when paired with something like with-as-a-function.)
On implementations of Python where setting the exception chaining attributes on an exception raises an AttributeError, exceptioncontext gracefully degrades to doing nothing.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file exceptioncontext-1.0.9.tar.gz
.
File metadata
- Download URL: exceptioncontext-1.0.9.tar.gz
- Upload date:
- Size: 3.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc972f8a397b0b5e6dca59ea6f2af50c5f1eff909ceea82e5b0ba5e5f4c5adc8 |
|
MD5 | e37b9759d2d4e437d5cd81b818d4cb4e |
|
BLAKE2b-256 | 4be34641c826eeb1da0b12532a0f46ca6d1bf2558cf49f3dd2af87eb73e650cf |
File details
Details for the file exceptioncontext-1.0.9-py2.py3-none-any.whl
.
File metadata
- Download URL: exceptioncontext-1.0.9-py2.py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6de7d20a3fa9e7dc67551d8bc084b5dab62bf5cc470630fedf7029b9a8b03333 |
|
MD5 | 2555d85acec91e980b31627efc1d293b |
|
BLAKE2b-256 | e816617f3e7c9dab0db377ad3e90fbe06c4e2edaa7de0493f901c614240fc186 |