summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-03-12 16:11:39 (GMT)
committerCollin Winter <collinw@gmail.com>2007-03-12 16:11:39 (GMT)
commit276887b16dc86e3423760c6ed9353591708fba17 (patch)
tree04e9896ffc00c0291959b4be71a83273e790b4ad /Include
parentf567ca3e1ae851ea6e7418da3df47e034841a08d (diff)
downloadcpython-276887b16dc86e3423760c6ed9353591708fba17.zip
cpython-276887b16dc86e3423760c6ed9353591708fba17.tar.gz
cpython-276887b16dc86e3423760c6ed9353591708fba17.tar.bz2
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167.
Will backport.
Diffstat (limited to 'Include')
-rw-r--r--Include/pystate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index cf29695..4919d99 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -21,6 +21,7 @@ typedef struct _is {
PyObject *modules;
PyObject *sysdict;
PyObject *builtins;
+ PyObject *modules_reloading;
PyObject *codec_search_path;
PyObject *codec_search_cache;