MCPcopy Create free account
hub / github.com/ipython/ipython / mute_warn

Function mute_warn

IPython/testing/tools.py:412–419  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

410
411@contextmanager
412def mute_warn():
413 from IPython.utils import warn
414 save_warn = warn.warn
415 warn.warn = lambda *a, **kw: None
416 try:
417 yield
418 finally:
419 warn.warn = save_warn
420
421@contextmanager
422def make_tempfile(name):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected