Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
400a1cebc743515e40157ed7af86e48d654290ce
/
.
/
Lib
/
test
/
test_importlib
/
_context.py
blob: 8a53eb55d1503bc4e902e841bdb1fff5e98ac451 [
file
] [
log
] [
blame
]
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()
"""