summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2013-04-13 14:26:58 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2013-04-13 14:26:58 (GMT)
commit64aafeb4de3b5e85007f2107250e6f1da4df2516 (patch)
tree39057074fa67114998a802a6e2761e37734ce021 /Misc
parenteff64447512b026416fce4e65730e25633a5f1ac (diff)
downloadcpython-64aafeb4de3b5e85007f2107250e6f1da4df2516.zip
cpython-64aafeb4de3b5e85007f2107250e6f1da4df2516.tar.gz
cpython-64aafeb4de3b5e85007f2107250e6f1da4df2516.tar.bz2
Issue #16447: Fix potential segfault when setting __name__ on a class.
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 4bee5b5..94a3ed3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.2?
Core and Builtins
-----------------
+- Issue #16447: Fixed potential segmentation fault when setting __name__ on a
+ class.
+
- Issue #17669: Fix crash involving finalization of generators using yield from.
- Issue #17619: Make input() check for Ctrl-C correctly on Windows.