(self)
| 1826 | fix.clean_up() |
| 1827 | |
| 1828 | def test_force_close(self): |
| 1829 | for i, fix, actions in self._iter_close_tests(): |
| 1830 | with self.subTest('{} {} {}'.format(i, fix, actions)): |
| 1831 | fix.prep_interpreter(fix.interp) |
| 1832 | self.run_actions(fix, actions) |
| 1833 | |
| 1834 | self._close(fix, force=True) |
| 1835 | |
| 1836 | self._assert_closed(fix) |
| 1837 | # XXX Things slow down if we have too many interpreters. |
| 1838 | fix.clean_up() |
| 1839 | |
| 1840 | |
| 1841 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected