summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2003-07-16 01:54:38 +0000
committerMark Hammond <mhammond@skippinet.com.au>2003-07-16 01:54:38 +0000
commitea659db390ac804de581eac6d1e6f775533f1a7d (patch)
treeadc6609559715d378f50f89dff3b007a14b0b31a /Python/pythonrun.c
parentd52700845438380b2dbb84747ba57cc15cea4d79 (diff)
downloadcpython-ea659db390ac804de581eac6d1e6f775533f1a7d.tar.gz
Correct previous patch looking for warnings module: sys.modules, not
sys.__modules__.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index fb40e8f22e..de4a77fb64 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -92,7 +92,7 @@ PyObject *PyModule_GetWarningsModule()
/* Save and restore any exceptions */
PyErr_Fetch(&typ, &val, &tb);
- all_modules = PySys_GetObject("__modules__");
+ all_modules = PySys_GetObject("modules");
if (all_modules) {
warnings_module = PyDict_GetItemString(all_modules, "warnings");
/* We keep a ref in the global */