diff options
Diffstat (limited to 'Lib/test')
| -rw-r--r-- | Lib/test/test_dict.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index fb954c8..ed66ddb 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -892,6 +892,15 @@ class DictTest(unittest.TestCase): self.assertEqual(list(b), ['x', 'y', 'z']) @support.cpython_only + def test_splittable_pop_pending(self): + """pop a pending key in a splitted table should not crash""" + a, b = self.make_shared_key_dict(2) + + a['a'] = 4 + with self.assertRaises(KeyError): + b.pop('a') + + @support.cpython_only def test_splittable_popitem(self): """split table must be combined when d.popitem()""" a, b = self.make_shared_key_dict(2) |
