(self)
| 1104 | self.assertIsNone(self.get_traceback()) |
| 1105 | |
| 1106 | def test_stop_untrack(self): |
| 1107 | tracemalloc.start() |
| 1108 | self.track() |
| 1109 | |
| 1110 | tracemalloc.stop() |
| 1111 | with self.assertRaises(RuntimeError): |
| 1112 | self.untrack() |
| 1113 | |
| 1114 | @unittest.skipIf(_testcapi is None, 'need _testcapi') |
| 1115 | @threading_helper.requires_working_threading() |
nothing calls this directly
no test coverage detected