()
| 126 | signal.signal(signal.SIGINT, signal.default_int_handler) |
| 127 | |
| 128 | def interrupt(): |
| 129 | # Wait for subprocess to start: |
| 130 | time.sleep(0.5) |
| 131 | interrupt_main() |
| 132 | |
| 133 | threading.Thread(target=interrupt).start() |
| 134 | start = time.time() |
nothing calls this directly
no outgoing calls
no test coverage detected