summaryrefslogtreecommitdiff
path: root/Include/internal/pycore_pystate.h
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2019-03-15 17:47:43 -0600
committerGitHub <noreply@github.com>2019-03-15 17:47:43 -0600
commitd2fdd1fedf6b9dc785cf5025b548a989faed089a (patch)
treefad1d8a72d9dea315758219cd5f1122ba0d0a87a /Include/internal/pycore_pystate.h
parentc11183cdcff6af13c4339fdcce84ab63f7930ddc (diff)
downloadcpython-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.h2
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(). */