summaryrefslogtreecommitdiffstats
path: root/Programs/_testembed.c
diff options
context:
space:
mode:
Diffstat (limited to 'Programs/_testembed.c')
-rw-r--r--Programs/_testembed.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Programs/_testembed.c b/Programs/_testembed.c
index 4ee2cd1..87d159f 100644
--- a/Programs/_testembed.c
+++ b/Programs/_testembed.c
@@ -360,6 +360,8 @@ static int test_init_global_config(void)
putenv("PYTHONUNBUFFERED=");
Py_UnbufferedStdioFlag = 1;
+ Py_FrozenFlag = 1;
+
/* FIXME: test Py_LegacyWindowsFSEncodingFlag */
/* FIXME: test Py_LegacyWindowsStdioFlag */
@@ -481,6 +483,8 @@ static int test_init_from_config(void)
Py_QuietFlag = 0;
config.quiet = 1;
+ config.configure_c_stdio = 0;
+
putenv("PYTHONUNBUFFERED=");
Py_UnbufferedStdioFlag = 0;
config.buffered_stdio = 0;
@@ -501,6 +505,9 @@ static int test_init_from_config(void)
config.check_hash_pycs_mode = L"always";
+ Py_FrozenFlag = 0;
+ config.pathconfig_warnings = 0;
+
err = _Py_InitializeFromConfig(&config);
if (_Py_INIT_FAILED(err)) {
_Py_ExitInitError(err);