(self)
| 1343 | self.assertEqual(n2, 0) |
| 1344 | |
| 1345 | def test_weak_keyed_len_cycles(self): |
| 1346 | self.check_len_cycles(weakref.WeakKeyDictionary, lambda k: (k, 1)) |
| 1347 | |
| 1348 | def test_weak_valued_len_cycles(self): |
| 1349 | self.check_len_cycles(weakref.WeakValueDictionary, lambda k: (1, k)) |
nothing calls this directly
no test coverage detected