(self)
| 5103 | # any scheduled alarms. |
| 5104 | |
| 5105 | def setUp(self): |
| 5106 | super().setUp() |
| 5107 | orig_alrm_handler = signal.signal(signal.SIGALRM, |
| 5108 | lambda signum, frame: 1 / 0) |
| 5109 | self.addCleanup(signal.signal, signal.SIGALRM, orig_alrm_handler) |
| 5110 | |
| 5111 | # Timeout for socket operations |
| 5112 | timeout = support.LOOPBACK_TIMEOUT |
nothing calls this directly
no test coverage detected