summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2013-04-13 16:44:44 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2013-04-13 16:44:44 (GMT)
commitc9734484ca774afad49e361f72cad60d937acf1b (patch)
tree27c55159f4eb6fd31aa5a805a755422eb5b1f8c2 /Misc/NEWS
parentb4fd468f125955b14f53e77e1f29b216ca888c88 (diff)
downloadcpython-c9734484ca774afad49e361f72cad60d937acf1b.zip
cpython-c9734484ca774afad49e361f72cad60d937acf1b.tar.gz
cpython-c9734484ca774afad49e361f72cad60d937acf1b.tar.bz2
Issue #17715: Add missing NULL Check to PyNumber_Long.
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 e04324f..4fd149a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.2?
Core and Builtins
-----------------
+- Issue #17715: Fix segmentation fault from raising an exception in a __trunc__
+ method.
+
- Issue #16447: Fixed potential segmentation fault when setting __name__ on a
class.