Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
6e62eb2e70a9f2a8099735989a58e8c8cfb4a2f2
/
.
/
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()
"""