summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-10-17 22:35:44 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-10-17 22:35:44 (GMT)
commitbc92bbd4d22e82e9458a3300c50b89e80b2c2d60 (patch)
tree54b073cdefd6e484fca89d31e8bd5ca57557f85a /Misc
parent4dc7278546992f1d985dd296fc0c0d884b57f0a5 (diff)
parentd6967320256a65b847cfc64173d12bf818171db5 (diff)
downloadcpython-bc92bbd4d22e82e9458a3300c50b89e80b2c2d60.zip
cpython-bc92bbd4d22e82e9458a3300c50b89e80b2c2d60.tar.gz
cpython-bc92bbd4d22e82e9458a3300c50b89e80b2c2d60.tar.bz2
Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 56fd60b..1aca6e7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #22653: Fix an assertion failure in debug mode when doing a reentrant
+ dict insertion in debug mode.
+
- Issue #22643: Fix integer overflow in Unicode case operations (upper, lower,
title, swapcase, casefold).