(self)
| 299 | self.assertGreaterEqual(peak3 - peak2, obj_size) |
| 300 | |
| 301 | def test_is_tracing(self): |
| 302 | tracemalloc.stop() |
| 303 | self.assertFalse(tracemalloc.is_tracing()) |
| 304 | |
| 305 | tracemalloc.start() |
| 306 | self.assertTrue(tracemalloc.is_tracing()) |
| 307 | |
| 308 | def test_snapshot(self): |
| 309 | obj, source = allocate_bytes(123) |
nothing calls this directly
no test coverage detected