(*args)
| 1062 | # terminated by the buildbot worker, we'll make an attempt to clean up our |
| 1063 | # subprocesses. |
| 1064 | def signal_handler(*args): |
| 1065 | os.kill(os.getpid(), signal.SIGINT) |
| 1066 | |
| 1067 | signal.signal(signal.SIGTERM, signal_handler) |
| 1068 |
nothing calls this directly
no test coverage detected
searching dependent graphs…