Take CTRL+C into account (SIGINT).
()
| 71 | signal.signal(signal.SIGINT, signal.SIG_IGN) |
| 72 | |
| 73 | def _allow_CTRL_C_posix(): |
| 74 | """Take CTRL+C into account (SIGINT).""" |
| 75 | signal.signal(signal.SIGINT, signal.default_int_handler) |
| 76 | |
| 77 | def _ignore_CTRL_C_other(): |
| 78 | """Ignore CTRL+C (not implemented).""" |
nothing calls this directly
no outgoing calls
no test coverage detected