summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2012-11-07 08:10:49 (GMT)
committerHynek Schlawack <hs@ox.cx>2012-11-07 08:10:49 (GMT)
commit15c02e304852596f2468f5edc32cb57d496ce9ca (patch)
treed4d8df5f6562e2dfdb419a71d7ed3e71d9b037c8 /Misc
parent99dd8b577b3f5073ff8d9dce09a510c34ef9f72f (diff)
parent33363f43e34defa17ad958ad6d718328f9e78db8 (diff)
downloadcpython-15c02e304852596f2468f5edc32cb57d496ce9ca.zip
cpython-15c02e304852596f2468f5edc32cb57d496ce9ca.tar.gz
cpython-15c02e304852596f2468f5edc32cb57d496ce9ca.tar.bz2
Issue #15001: fix segfault on "del sys.module['__main__']"
Patch by Victor Stinner.
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 5ac9ec2..43e31d3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.4.0 Alpha 1?
Core and Builtins
-----------------
+- Issue #15001: fix segfault on "del sys.module['__main__']". Patch by Victor
+ Stinner.
+
- Issue #8271: the utf-8 decoder now outputs the correct number of U+FFFD
characters when used with the 'replace' error handler on invalid utf-8
sequences. Patch by Serhiy Storchaka, tests by Ezio Melotti.