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