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

Method wrapper

IPython/core/tests/test_run.py:495–497  ·  view source on GitHub ↗
(*args, **kwds)

Source from the content-addressed store, hash-verified

493 def with_fake_debugger(func):
494 @functools.wraps(func)
495 def wrapper(*args, **kwds):
496 with patch.object(debugger.Pdb, 'run', staticmethod(eval)):
497 return func(*args, **kwds)
498 return wrapper
499
500 @with_fake_debugger

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected