diff options
author | Brett Cannon <brett@python.org> | 2012-04-29 18:38:11 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-04-29 18:38:11 (GMT) |
commit | 62228dbd6c3b7be4199756c42a21429664c053e6 (patch) | |
tree | 3d63ba456c809bd1f0eae2d9dee4bf8ae7dad31b /Include | |
parent | 1fc3ec91cc3e86035179db3e476ae7cd36ca6716 (diff) | |
download | cpython-62228dbd6c3b7be4199756c42a21429664c053e6.zip cpython-62228dbd6c3b7be4199756c42a21429664c053e6.tar.gz cpython-62228dbd6c3b7be4199756c42a21429664c053e6.tar.bz2 |
Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.
Thanks to Eric Snow for the patch.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pystate.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/pystate.h b/Include/pystate.h index 68d512b..6272492 100644 --- a/Include/pystate.h +++ b/Include/pystate.h @@ -26,7 +26,6 @@ typedef struct _is { PyObject *sysdict; PyObject *builtins; PyObject *importlib; - PyObject *modules_reloading; PyObject *codec_search_path; PyObject *codec_search_cache; |