commit | 276887b16dc86e3423760c6ed9353591708fba17 | [log] [tgz] |
---|---|---|
author | Collin Winter <collinw@gmail.com> | Mon Mar 12 16:11:39 2007 +0000 |
committer | Collin Winter <collinw@gmail.com> | Mon Mar 12 16:11:39 2007 +0000 |
tree | 04e9896ffc00c0291959b4be71a83273e790b4ad | |
parent | f567ca3e1ae851ea6e7418da3df47e034841a08d [diff] [blame] |
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. Will backport.
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 @@ PyObject *modules; PyObject *sysdict; PyObject *builtins; + PyObject *modules_reloading; PyObject *codec_search_path; PyObject *codec_search_cache;