(self)
| 335 | |
| 336 | @refcount_test |
| 337 | def test_frame(self): |
| 338 | def f(): |
| 339 | frame = sys._getframe() |
| 340 | gc.collect() |
| 341 | f() |
| 342 | self.assertEqual(gc.collect(), 1) |
| 343 | |
| 344 | def test_saveall(self): |
| 345 | # Verify that cyclic garbage like lists show up in gc.garbage if the |
nothing calls this directly
no test coverage detected