summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
Diffstat (limited to 'Include')
-rw-r--r--Include/pystate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index 4401225..2081ff5 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -33,6 +33,7 @@ typedef struct {
int faulthandler;
int tracemalloc; /* Number of saved frames, 0=don't trace */
int importtime; /* -X importtime */
+ int dev_mode; /* -X dev */
} _PyCoreConfig;
#define _PyCoreConfig_INIT \
@@ -43,7 +44,8 @@ typedef struct {
.allocator = NULL, \
.faulthandler = 0, \
.tracemalloc = 0, \
- .importtime = 0}
+ .importtime = 0, \
+ .dev_mode = 0}
/* Placeholders while working on the new configuration API
*