(self)
| 886 | self.assertGreaterEqual(new[2][stat], old[2][stat]) |
| 887 | |
| 888 | def test_freeze(self): |
| 889 | gc.freeze() |
| 890 | self.assertGreater(gc.get_freeze_count(), 0) |
| 891 | gc.unfreeze() |
| 892 | self.assertEqual(gc.get_freeze_count(), 0) |
| 893 | |
| 894 | def test_get_objects(self): |
| 895 | gc.collect() |
nothing calls this directly
no test coverage detected