(self)
| 23 | signal.signal(signal.SIGINT, self.int_handler) |
| 24 | |
| 25 | def tearDown(self): |
| 26 | signal.signal(signal.SIGINT, self._default_handler) |
| 27 | unittest.signals._results = weakref.WeakKeyDictionary() |
| 28 | unittest.signals._interrupt_handler = None |
| 29 | |
| 30 | |
| 31 | def withRepeats(self, test_function, repeats=None): |