(self)
| 5000 | # any scheduled alarms. |
| 5001 | |
| 5002 | def setUp(self): |
| 5003 | super().setUp() |
| 5004 | orig_alrm_handler = signal.signal(signal.SIGALRM, |
| 5005 | lambda signum, frame: 1 / 0) |
| 5006 | self.addCleanup(signal.signal, signal.SIGALRM, orig_alrm_handler) |
| 5007 | |
| 5008 | # Timeout for socket operations |
| 5009 | timeout = support.LOOPBACK_TIMEOUT |
nothing calls this directly
no test coverage detected