From cad1f747da47849ab5d8b0b881f7a0b94564d290 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 5 Mar 2019 02:01:27 +0100 Subject: bpo-36142: Add _PyPreConfig structure (GH-12172) * Add _PyPreConfig structure * Move 'ignored' and 'use_environment' fields from _PyCoreConfig to _PyPreConfig * Add a new "_PyPreConfig preconfig;" field to _PyCoreConfig --- Python/pathconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pathconfig.c') diff --git a/Python/pathconfig.c b/Python/pathconfig.c index f96f0153e2..41fc9e2142 100644 --- a/Python/pathconfig.c +++ b/Python/pathconfig.c @@ -330,7 +330,7 @@ _PyCoreConfig_CalculatePathConfig(_PyCoreConfig *config) #endif if (path_config.isolated != -1) { - config->isolated = path_config.isolated; + config->preconfig.isolated = path_config.isolated; } if (path_config.site_import != -1) { config->site_import = path_config.site_import; -- cgit v1.2.1