Signal handler logging the stack-trace of all active threads.
(*args)
| 493 | return |
| 494 | |
| 495 | def cry_handler(*args): |
| 496 | """Signal handler logging the stack-trace of all active threads.""" |
| 497 | with in_sighandler(): |
| 498 | safe_say(cry()) |
| 499 | platforms.signals[sig] = cry_handler |
| 500 | |
| 501 |
nothing calls this directly
no test coverage detected