(signum, frame)
| 42 | |
| 43 | |
| 44 | def timeout_handler(signum, frame): |
| 45 | print("alarm went off") |
| 46 | # return |
| 47 | raise TimeoutException |
| 48 | |
| 49 | |
| 50 | signal.signal(signal.SIGALRM, timeout_handler) |
nothing calls this directly
no outgoing calls
no test coverage detected