diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-11-07 08:10:49 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-11-07 08:10:49 (GMT) |
commit | 15c02e304852596f2468f5edc32cb57d496ce9ca (patch) | |
tree | d4d8df5f6562e2dfdb419a71d7ed3e71d9b037c8 /Misc | |
parent | 99dd8b577b3f5073ff8d9dce09a510c34ef9f72f (diff) | |
parent | 33363f43e34defa17ad958ad6d718328f9e78db8 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |