summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-10-25 09:46:28 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-10-25 09:46:28 (GMT)
commit76464494bc1a6779cc4839a28238fb7ea4104a5a (patch)
tree420dc4593bc35c2ecd6611059c38f050375151ba /Misc/NEWS
parent837cd06d36f7e69fc51e5bce7631041161f9b864 (diff)
downloadcpython-76464494bc1a6779cc4839a28238fb7ea4104a5a.zip
cpython-76464494bc1a6779cc4839a28238fb7ea4104a5a.tar.gz
cpython-76464494bc1a6779cc4839a28238fb7ea4104a5a.tar.bz2
Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5438245..e6948d7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -132,6 +132,9 @@ Core and Builtins
Library
-------
+- Issue #16305: Fix a segmentation fault occurring when interrupting
+ math.factorial.
+
- Issue #14398: Fix size truncation and overflow bugs in the bz2 module.
- Issue #16220: wsgiref now always calls close() on an iterable response.