summaryrefslogtreecommitdiff
path: root/Include/pystate.h
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2017-05-23 21:46:51 -0700
committerGitHub <noreply@github.com>2017-05-23 21:46:51 -0700
commit1abcf6700b4da6207fe859de40c6c1bada6b4fec (patch)
tree9257126657803f00035c44cb0d1ae579a78ce999 /Include/pystate.h
parentc842efc6aedf979b827a9473192f46cec53d58db (diff)
downloadcpython-git-1abcf6700b4da6207fe859de40c6c1bada6b4fec.tar.gz
bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772)
(patch by Nick Coghlan)
Diffstat (limited to 'Include/pystate.h')
-rw-r--r--Include/pystate.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index 5e54da1b19..13e4d73227 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -23,6 +23,16 @@ typedef struct _is PyInterpreterState;
#else
typedef PyObject* (*_PyFrameEvalFunction)(struct _frame *, int);
+
+typedef struct {
+ int ignore_environment;
+ int use_hash_seed;
+ unsigned long hash_seed;
+ int _disable_importlib; /* Needed by freeze_importlib */
+} _PyCoreConfig;
+
+#define _PyCoreConfig_INIT {0, -1, 0, 0}
+
typedef struct _is {
struct _is *next;
@@ -42,6 +52,7 @@ typedef struct _is {
int codecs_initialized;
int fscodec_initialized;
+ _PyCoreConfig core_config;
#ifdef HAVE_DLOPEN
int dlopenflags;
#endif