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