summaryrefslogtreecommitdiffstats
path: root/Include/pystate.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/pystate.h')
-rw-r--r--Include/pystate.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/Include/pystate.h b/Include/pystate.h
index ab6400c..533851f 100644
--- a/Include/pystate.h
+++ b/Include/pystate.h
@@ -60,16 +60,17 @@ typedef struct {
*/
typedef struct {
int install_signal_handlers;
- wchar_t *module_search_path_env; /* PYTHONPATH environment variable */
- wchar_t *pythonhome; /* PYTHONHOME environment variable,
- see also Py_SetPythonHome(). */
+ /* PYTHONPATH environment variable */
+ wchar_t *module_search_path_env;
+ /* PYTHONHOME environment variable, see also Py_SetPythonHome(). */
+ wchar_t *home;
} _PyMainInterpreterConfig;
#define _PyMainInterpreterConfig_INIT \
(_PyMainInterpreterConfig){\
.install_signal_handlers = -1, \
.module_search_path_env = NULL, \
- .pythonhome = NULL}
+ .home = NULL}
typedef struct _is {