(*args)
| 861 | # by the buildbot worker, we'll make an attempt to clean up our subprocesses. |
| 862 | def install_signal_handler(): |
| 863 | def signal_handler(*args): |
| 864 | os.kill(os.getpid(), signal.SIGINT) |
| 865 | |
| 866 | signal.signal(signal.SIGTERM, signal_handler) |
| 867 |
nothing calls this directly
no test coverage detected
searching dependent graphs…