Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

exceptioncontext-1.0.9.tar.gz (3.1 kB view hashes)

Uploaded Source

Built Distribution

exceptioncontext-1.0.9-py2.py3-none-any.whl (3.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page