(prompt: str)
| 7 | |
| 8 | |
| 9 | def debuggerInput(prompt: str): |
| 10 | try: |
| 11 | return input(prompt) # blocking |
| 12 | except KeyboardInterrupt: |
| 13 | print("\b\bQuit") # to match the behaviour of gdb |
| 14 | return "" |
| 15 | except Exception as e: |
| 16 | print(e) |
| 17 | return "" |
| 18 | |
| 19 | |
| 20 | def enable(debuggerGlobalObject=pm.eval("debuggerGlobal")): |
nothing calls this directly
no outgoing calls
no test coverage detected