summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-10-10 23:49:32 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2014-10-10 23:49:32 +0200
commit5b13b408c87b62fdc5fa1d6bdb7eca219db31ad9 (patch)
treeb369cbce22a8532280b9f4777dfa78205c719773 /Misc
parentc4a753cc74c473ffc496b3caa5e10f54b6a52a04 (diff)
downloadcpython-5b13b408c87b62fdc5fa1d6bdb7eca219db31ad9.tar.gz
Issue #22604: Fix assertion error in debug mode when dividing a complex number by (nan+0j).
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 4f09b02a27..90966f25df 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 2.7.9?
Core and Builtins
-----------------
+- Issue #22604: Fix assertion error in debug mode when dividing a complex
+ number by (nan+0j).
+
- Issue #22470: Fixed integer overflow issues in "backslashreplace" and
"xmlcharrefreplace" error handlers.