MCPcopy Create free account
hub / github.com/EasyIME/PIME / ignore_deprecation

Function ignore_deprecation

python/python3/tornado/test/util.py:110–114  ·  view source on GitHub ↗

Context manager to ignore deprecation warnings.

()

Source from the content-addressed store, hash-verified

108
109@contextlib.contextmanager
110def ignore_deprecation():
111 """Context manager to ignore deprecation warnings."""
112 with warnings.catch_warnings():
113 warnings.simplefilter("ignore", DeprecationWarning)
114 yield

Callers 4

setUpMethod · 0.90
connect_to_serverMethod · 0.90
setUpMethod · 0.90
setUpMethod · 0.90

Calls

no outgoing calls

Tested by 4

setUpMethod · 0.72
connect_to_serverMethod · 0.72
setUpMethod · 0.72
setUpMethod · 0.72