diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2013-04-13 14:26:58 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2013-04-13 14:26:58 (GMT) |
commit | 64aafeb4de3b5e85007f2107250e6f1da4df2516 (patch) | |
tree | 39057074fa67114998a802a6e2761e37734ce021 /Misc | |
parent | eff64447512b026416fce4e65730e25633a5f1ac (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |