diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-09-13 14:56:38 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-09-13 14:56:38 (GMT) |
commit | d0ad11f6b4b0c617b5b57f0dbc97a2a173f6309b (patch) | |
tree | 633b2e82a609b4142d7d7a84f8d37c55610e9d18 /Misc/NEWS | |
parent | 9926480b6aaab60d2c5f710e7fc60061c52f6f08 (diff) | |
download | cpython-d0ad11f6b4b0c617b5b57f0dbc97a2a173f6309b.zip cpython-d0ad11f6b4b0c617b5b57f0dbc97a2a173f6309b.tar.gz cpython-d0ad11f6b4b0c617b5b57f0dbc97a2a173f6309b.tar.bz2 |
Fix _PyDict_Pop() on pending key
Issue #28120: Fix dict.pop() for splitted dictionary when trying to remove a
"pending key" (Not yet inserted in split-table).
Patch by Xiang Zhang.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.6.0 beta 2 Core and Builtins ----------------- +- Issue #28120: Fix dict.pop() for splitted dictionary when trying to remove a + "pending key" (Not yet inserted in split-table). Patch by Xiang Zhang. + Library ------- |