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