mirror of https://github.com/python/cpython
14 lines
282 B
Python
14 lines
282 B
Python
|
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()
|
||
|
"""
|