diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2019-03-15 17:47:43 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-15 17:47:43 -0600 |
commit | d2fdd1fedf6b9dc785cf5025b548a989faed089a (patch) | |
tree | fad1d8a72d9dea315758219cd5f1122ba0d0a87a /Include/internal/pycore_pystate.h | |
parent | c11183cdcff6af13c4339fdcce84ab63f7930ddc (diff) | |
download | cpython-git-d2fdd1fedf6b9dc785cf5025b548a989faed089a.tar.gz |
bpo-36124: Add PyInterpreterState.dict. (gh-12132)
Diffstat (limited to 'Include/internal/pycore_pystate.h')
-rw-r--r-- | Include/internal/pycore_pystate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/internal/pycore_pystate.h b/Include/internal/pycore_pystate.h index 945d9923a8..703a85b96b 100644 --- a/Include/internal/pycore_pystate.h +++ b/Include/internal/pycore_pystate.h @@ -63,6 +63,8 @@ struct _is { int dlopenflags; #endif + PyObject *dict; /* Stores per-interpreter state */ + PyObject *builtins_copy; PyObject *import_func; /* Initialized to PyEval_EvalFrameDefault(). */ |