Returns true if the process is shutting down
()
| 381 | # |
| 382 | |
| 383 | def is_exiting(): |
| 384 | ''' |
| 385 | Returns true if the process is shutting down |
| 386 | ''' |
| 387 | return _exiting or _exiting is None |
| 388 | |
| 389 | _exiting = False |
| 390 |
no outgoing calls
no test coverage detected
searching dependent graphs…