(*args, **kwargs)
| 362 | # run |
| 363 | # ======================================================================================================================= |
| 364 | def run(*args, **kwargs): |
| 365 | debugger = get_global_debugger() |
| 366 | if debugger is not None: |
| 367 | debugger.enable_tracing() |
| 368 | debugger = None |
| 369 | |
| 370 | return _original_run(*args, **kwargs) |
| 371 | |
| 372 | |
| 373 | # ======================================================================================================================= |
nothing calls this directly
no test coverage detected