pop a pending key in a split table should not crash
(self)
| 1031 | |
| 1032 | @support.cpython_only |
| 1033 | def test_splittable_pop_pending(self): |
| 1034 | """pop a pending key in a split table should not crash""" |
| 1035 | a, b = self.make_shared_key_dict(2) |
| 1036 | |
| 1037 | a['a'] = 4 |
| 1038 | with self.assertRaises(KeyError): |
| 1039 | b.pop('a') |
| 1040 | |
| 1041 | @support.cpython_only |
| 1042 | def test_splittable_popitem(self): |
nothing calls this directly
no test coverage detected