commit | e19d7a3c0ac25680d2f72669f1441dadbb2f9a41 | [log] [tgz] |
---|---|---|
author | Collin Winter <collinw@gmail.com> | Mon Mar 12 16:49:23 2007 +0000 |
committer | Collin Winter <collinw@gmail.com> | Mon Mar 12 16:49:23 2007 +0000 |
tree | 85bd8be0b7673cd915fad4c782a5d3305062b77c | |
parent | 1817f096f4153293abe7ffb6eda47be3f809fa77 [diff] [blame] |
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. Backported from r54291.
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;