(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)) |
| 1350 | |
| 1351 | def check_len_race(self, dict_type, cons): |
| 1352 | # Extended sanity checks for len() in the face of cyclic collection |
nothing calls this directly
no test coverage detected