(*args, **kwds)
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected