diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2017-09-04 17:54:09 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 17:54:09 -0600 |
commit | 86b7afdfeee77993fe896a2aa13b3f4f95973f16 (patch) | |
tree | a37fbb7233319c671e4787bff683629148cab971 /Include/pystate.h | |
parent | f5ea83f4864232fecc042ff0d1c2401807b19280 (diff) | |
download | cpython-git-86b7afdfeee77993fe896a2aa13b3f4f95973f16.tar.gz |
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
sys.modules is the one true source.
Diffstat (limited to 'Include/pystate.h')
-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 edfb08b15b..8a92f3ec3e 100644 --- a/Include/pystate.h +++ b/Include/pystate.h @@ -52,7 +52,6 @@ typedef struct _is { int64_t id; - PyObject *modules; PyObject *modules_by_index; PyObject *sysdict; PyObject *builtins; |