bpo-36124: Add PyInterpreterState.dict. (gh-12132)

This commit is contained in:
Eric Snow 2019-03-15 17:47:43 -06:00 committed by GitHub
parent c11183cdcf
commit d2fdd1fedf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 40 additions and 2 deletions

View file

@ -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(). */