(signum, frame)
| 517 | def install_HUP_not_supported_handler(worker, sig='SIGHUP'): |
| 518 | |
| 519 | def warn_on_HUP_handler(signum, frame): |
| 520 | with in_sighandler(): |
| 521 | safe_say('{sig} not supported: Restarting with {sig} is ' |
| 522 | 'unstable on this platform!'.format(sig=sig)) |
| 523 | platforms.signals[sig] = warn_on_HUP_handler |
nothing calls this directly
no test coverage detected