(self)
| 1707 | self.assertIs(v, value2) |
| 1708 | |
| 1709 | def test_weak_valued_dict_popitem(self): |
| 1710 | self.check_popitem(weakref.WeakValueDictionary, |
| 1711 | "key1", C(), "key2", C()) |
| 1712 | |
| 1713 | def test_weak_keyed_dict_popitem(self): |
| 1714 | self.check_popitem(weakref.WeakKeyDictionary, |
nothing calls this directly
no test coverage detected