(self)
| 1376 | self.check_len_race(weakref.WeakKeyDictionary, lambda k: (k, 1)) |
| 1377 | |
| 1378 | def test_weak_valued_len_race(self): |
| 1379 | self.check_len_race(weakref.WeakValueDictionary, lambda k: (1, k)) |
| 1380 | |
| 1381 | def test_weak_values(self): |
| 1382 | # |
nothing calls this directly
no test coverage detected