(self)
| 1355 | self.assertLessEqual(n2, n1) |
| 1356 | |
| 1357 | def test_weak_keyed_len_race(self): |
| 1358 | self.check_len_race(weakref.WeakKeyDictionary, lambda k: (k, 1)) |
| 1359 | |
| 1360 | def test_weak_valued_len_race(self): |
| 1361 | self.check_len_race(weakref.WeakValueDictionary, lambda k: (1, k)) |
nothing calls this directly
no test coverage detected