(*args)
| 523 | # Register the atexit handler. In this case, we shouldn't call sys.exit |
| 524 | # as we're already in the exit procedure. |
| 525 | def atexit_handler(*args): |
| 526 | self.kill_all_processes(check_alive=False, allow_graceful=True) |
| 527 | |
| 528 | atexit.register(atexit_handler) |
| 529 |
nothing calls this directly
no test coverage detected