[Python-checkins] cpython (2.7): Issue #15001: fix segfault on "del sys.modules['__main__']"

hynek.schlawack python-checkins at python.org
Wed Nov 7 09:48:29 CET 2012


http://hg.python.org/cpython/rev/4ebe1ede981e
changeset: 80292:4ebe1ede981e
branch: 2.7
parent: 80258:1c54def5947c
user: Hynek Schlawack <hs at ox.cx>
date: Wed Nov 07 09:41:28 2012 +0100
summary:
 Issue #15001: fix segfault on "del sys.modules['__main__']"
Patch by Victor Stinner.
files:
 Lib/test/test_cmd_line.py | 19 +++++++++++++++++--
 Misc/NEWS | 3 +++
 Python/pythonrun.c | 10 +++++-----
 3 files changed, 25 insertions(+), 7 deletions(-)
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py
--- a/Lib/test/test_cmd_line.py
+++ b/Lib/test/test_cmd_line.py
@@ -2,9 +2,12 @@
 # All tests are executed with environment variables ignored
 # See test_cmd_line_script.py for testing of script execution
 
-import test.test_support, unittest
+import test.test_support
 import sys
-from test.script_helper import spawn_python, kill_python, python_exit_code
+import unittest
+from test.script_helper import (
+ assert_python_ok, spawn_python, kill_python, python_exit_code
+)
 
 
 class CmdLineTest(unittest.TestCase):
@@ -101,6 +104,18 @@
 data = self.start_python('-R', '-c', code)
 self.assertTrue('hash_randomization=1' in data)
 
+ def test_del___main__(self):
+ # Issue #15001: PyRun_SimpleFileExFlags() did crash because it kept a
+ # borrowed reference to the dict of __main__ module and later modify
+ # the dict whereas the module was destroyed
+ filename = test.test_support.TESTFN
+ self.addCleanup(test.test_support.unlink, filename)
+ with open(filename, "w") as script:
+ print >>script, "import sys"
+ print >>script, "del sys.modules['__main__']"
+ assert_python_ok(filename)
+
+
 def test_main():
 test.test_support.run_unittest(CmdLineTest)
 test.test_support.reap_children()
diff --git a/Misc/NEWS b/Misc/NEWS
--- 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.
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -907,19 +907,20 @@
 {
 PyObject *m, *d, *v;
 const char *ext;
- int set_file_name = 0, ret, len;
+ int set_file_name = 0, len, ret = -1;
 
 m = PyImport_AddModule("__main__");
 if (m == NULL)
 return -1;
+ Py_INCREF(m);
 d = PyModule_GetDict(m);
 if (PyDict_GetItemString(d, "__file__") == NULL) {
 PyObject *f = PyString_FromString(filename);
 if (f == NULL)
- return -1;
+ goto done;
 if (PyDict_SetItemString(d, "__file__", f) < 0) {
 Py_DECREF(f);
- return -1;
+ goto done;
 }
 set_file_name = 1;
 Py_DECREF(f);
@@ -932,7 +933,6 @@
 fclose(fp);
 if ((fp = fopen(filename, "rb")) == NULL) {
 fprintf(stderr, "python: Can't reopen .pyc file\n");
- ret = -1;
 goto done;
 }
 /* Turn on optimization if a .pyo file is given */
@@ -945,7 +945,6 @@
 }
 if (v == NULL) {
 PyErr_Print();
- ret = -1;
 goto done;
 }
 Py_DECREF(v);
@@ -955,6 +954,7 @@
 done:
 if (set_file_name && PyDict_DelItemString(d, "__file__"))
 PyErr_Clear();
+ Py_DECREF(m);
 return ret;
 }
 
-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list

AltStyle によって変換されたページ (->オリジナル) /