Commit ecd9129c authored by Jeremy Hylton's avatar Jeremy Hylton

Add comment to mollify Tim.

parent 203eec46
...@@ -594,6 +594,8 @@ PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname) ...@@ -594,6 +594,8 @@ PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname)
m = PyImport_AddModule(name); m = PyImport_AddModule(name);
if (m == NULL) if (m == NULL)
return NULL; return NULL;
/* If the module is being reloaded, we get the old module back
and re-use its dict to exec the new code. */
d = PyModule_GetDict(m); d = PyModule_GetDict(m);
if (PyDict_GetItemString(d, "__builtins__") == NULL) { if (PyDict_GetItemString(d, "__builtins__") == NULL) {
if (PyDict_SetItemString(d, "__builtins__", if (PyDict_SetItemString(d, "__builtins__",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment