()
| 29 | if is_windows_os(): |
| 30 | # Windows timeout using threading.Timer |
| 31 | def raise_timeout(): |
| 32 | raise TimeoutException("Code execution timed out") |
| 33 | timer = threading.Timer(seconds, raise_timeout) |
| 34 | timer.start() |
| 35 | try: |
nothing calls this directly
no test coverage detected