diff options
author | Brett Cannon <brett@python.org> | 2012-04-29 14:38:11 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-04-29 14:38:11 -0400 |
commit | 50f76bdf6a49c9e80d8c092db2e93fc8c02ecb5c (patch) | |
tree | f6f90b9a9b9ed1a838a547b548779687ffc441b6 /Python/pystate.c | |
parent | 7c98a7f16877024b603d709127603549b85c3e19 (diff) | |
download | cpython-50f76bdf6a49c9e80d8c092db2e93fc8c02ecb5c.tar.gz |
Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.
Thanks to Eric Snow for the patch.
Diffstat (limited to 'Python/pystate.c')
-rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index fdcbbcec87..a0489ad08a 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -69,7 +69,6 @@ PyInterpreterState_New(void) Py_FatalError("Can't initialize threads for interpreter"); #endif interp->modules = NULL; - interp->modules_reloading = NULL; interp->modules_by_index = NULL; interp->sysdict = NULL; interp->builtins = NULL; @@ -114,7 +113,6 @@ PyInterpreterState_Clear(PyInterpreterState *interp) Py_CLEAR(interp->codec_error_registry); Py_CLEAR(interp->modules); Py_CLEAR(interp->modules_by_index); - Py_CLEAR(interp->modules_reloading); Py_CLEAR(interp->sysdict); Py_CLEAR(interp->builtins); Py_CLEAR(interp->importlib); |