commit | b271b3e18820eaaf8f6a7a41f462451d98a0ad2c | [log] [tgz] |
---|---|---|
author | Hynek Schlawack <hs@ox.cx> | Wed Nov 07 09:41:28 2012 +0100 |
committer | Hynek Schlawack <hs@ox.cx> | Wed Nov 07 09:41:28 2012 +0100 |
tree | b196d40272ce896432ffac441fe774e3ff72fdb9 | |
parent | 6cad3712b316a9b3436e6ee455909f655404d236 [diff] [blame] |
Issue #15001: fix segfault on "del sys.modules['__main__']" Patch by Victor Stinner.
diff --git a/Misc/NEWS b/Misc/NEWS index b2ad14b..16ddf41 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ Core and Builtins ----------------- +- Issue #15001: fix segfault on "del sys.modules['__main__']". Patch by Victor + Stinner. + - Issue #5057: the peepholer no longer optimizes subscription on unicode literals (e.g. u'foo'[0]) in order to produce compatible pyc files between narrow and wide builds.