python-exceptiongroup
Port variant py310
Summary Backport of PEP 654 (exception groups) (3.10)
Package version 1.1.3
Homepage No known homepage
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v11
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 15 AUG 2023, 17:14:27 UTC
Port created 05 APR 2022, 02:12:22 UTC
Subpackage Descriptions
single :alt: Build Status :alt: Code Coverage This is a backport of the BaseExceptionGroup and ExceptionGroup classes from Python 3.11. It contains the following: * The ``exceptiongroup.BaseExceptionGroup and exceptiongroup.ExceptionGroup`` classes * A utility function (``exceptiongroup.catch()``) for catching exceptions possibly nested in an exception group * Patches to the TracebackException class that properly formats exception groups (installed on import) * An exception hook that handles formatting of exception groups through TracebackException (installed on import) * Special versions of some of the functions from the traceback module, modified to correctly handle exception groups even when monkey patching is disabled, or blocked by another custom exception hook: * ``traceback.format_exception()`` * ``traceback.format_exception_only()`` * ``traceback.print_exception()`` * ``traceback.print_exc()`` If this package is imported on Python 3.11 or later, the built-in implementations of the exception group classes are used instead, TracebackException is not monkey patched and the exception hook won't be installed. See the `standard library documentation`_ for more information on exception groups. .. _standard library documentation: https://docs.python.org/3/library/exceptions.html Catching exceptions =================== Due to the lack of the ``except*`` syntax introduced by `PEP 654`_ in earlier Python versions, you need to use ``exceptiongroup.catch()`` to catch exceptions that are potentially nested inside an exception group. This function returns a context manager that calls the given handler for any exceptions matching the sole argument. The argument to ``catch()`` must be a dict (or any Mapping) where each key is either an exception class or an iterable of exception classes. Each value must be a callable that takes a single positional argument. The handler will be called at most once, with an exception group as an argument which will contain all the exceptions that are any of the given types, or their subclasses. The exception group may contain nested groups containing more matching exceptions. Thus, the following Python 3.11+ code: .. code-block:: python3 try: ... except* (ValueError, KeyError) as excgroup: for exc in excgroup.exceptions: print('Caught exception:', type(exc)) except* RuntimeError: print('Caught runtime error') would be written with this backport like this: .. code-block:: python3 from exceptiongroup import ExceptionGroup, catch def value_key_err_handler(excgroup: ExceptionGroup) -> None: for exc in excgroup.exceptions: print('Caught exception:', type(exc)) def runtime_err_handler(exc: ExceptionGroup) -> None: print('Caught runtime error') with catch({ (ValueError, KeyError): value_key_err_handler, RuntimeError: runtime_err_handler }): ... **NOTE**: Just like with ``except*``, you cannot handle BaseExceptionGroup or ExceptionGroup with ``catch()``.
Configuration Switches (platform-specific settings discarded)
PY310 ON Build using Python 3.10 PY311 OFF Build using Python 3.11
Package Dependencies by Type
Build (only) python-pip:single:py310
autoselect-python:single:standard
Build and Runtime python310:single:standard
Download groups
main mirror://PYPIWHL/ad/83/b71e58666f156a39fb29417e4c8ca4bc7400c0dd4ed9e8842ab54dc8c344
Distribution File Information
343280667a4585d195ca1cf9cef84a4e178c4b6cf2274caef9859782b567d5e3 14710 exceptiongroup-1.1.3-py3-none-any.whl
Ports that require python-exceptiongroup:py310
python-anyio:py310 Layer built on asyncio or trio libraries (3.10)
python-cattrs:py310 Composable complex class support for attrs (3.10)