Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/usr/local/python-3.12/lib/python3.12/test/test_importlib/
Upload File :
Current File : //proc/thread-self/root/usr/local/python-3.12/lib/python3.12/test/test_importlib/_context.py

import contextlib


# from jaraco.context 4.3
class suppress(contextlib.suppress, contextlib.ContextDecorator):
    """
    A version of contextlib.suppress with decorator support.

    >>> @suppress(KeyError)
    ... def key_error():
    ...     {}['']
    >>> key_error()
    """