summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-08-03 20:49:07 (GMT)
committerGitHub <noreply@github.com>2018-08-03 20:49:07 (GMT)
commit5a953fd0ab4d0f792f4c1537616b2ce8ee40d976 (patch)
treecad675955816179aa53030f5ba6ae7526e6caba5 /Python
parent7b41dbad78c6b03ca2f98800a92a1977d3946643 (diff)
downloadcpython-5a953fd0ab4d0f792f4c1537616b2ce8ee40d976.zip
cpython-5a953fd0ab4d0f792f4c1537616b2ce8ee40d976.tar.gz
cpython-5a953fd0ab4d0f792f4c1537616b2ce8ee40d976.tar.bz2
bpo-34170: _PyCoreConfig_Read() don't replace coerce_c_locale (GH-8658)
If coerce_c_locale is already set (>= 0), use its value: don't override it.
Diffstat (limited to 'Python')
-rw-r--r--Python/coreconfig.c33
-rw-r--r--Python/pylifecycle.c1
2 files changed, 17 insertions, 17 deletions
diff --git a/Python/coreconfig.c b/Python/coreconfig.c
index 829592c..1a32525 100644
--- a/Python/coreconfig.c
+++ b/Python/coreconfig.c
@@ -367,6 +367,8 @@ _PyCoreConfig_SetGlobalConfig(const _PyCoreConfig *config)
static _PyInitError
config_init_program_name(_PyCoreConfig *config)
{
+ assert(config->program_name == NULL);
+
/* If Py_SetProgramName() was called, use its value */
const wchar_t *program_name = _Py_path_config.program_name;
if (program_name != NULL) {
@@ -665,16 +667,18 @@ config_read_env_vars(_PyCoreConfig *config)
config->malloc_stats = 1;
}
- const char *env = _PyCoreConfig_GetEnv(config, "PYTHONCOERCECLOCALE");
- if (env) {
- if (strcmp(env, "0") == 0) {
- config->coerce_c_locale = 0;
- }
- else if (strcmp(env, "warn") == 0) {
- config->coerce_c_locale_warn = 1;
- }
- else {
- config->coerce_c_locale = 1;
+ if (config->coerce_c_locale < 0) {
+ const char *env = _PyCoreConfig_GetEnv(config, "PYTHONCOERCECLOCALE");
+ if (env) {
+ if (strcmp(env, "0") == 0) {
+ config->coerce_c_locale = 0;
+ }
+ else if (strcmp(env, "warn") == 0) {
+ config->coerce_c_locale_warn = 1;
+ }
+ else {
+ config->coerce_c_locale = 1;
+ }
}
}
@@ -820,10 +824,6 @@ config_read_complex_options(_PyCoreConfig *config)
static void
config_init_locale(_PyCoreConfig *config)
{
- if (config->utf8_mode >= 0 && config->coerce_c_locale >= 0) {
- return;
- }
-
if (_Py_LegacyLocaleDetected()) {
/* POSIX locale: enable C locale coercion and UTF-8 Mode */
if (config->utf8_mode < 0) {
@@ -832,7 +832,6 @@ config_init_locale(_PyCoreConfig *config)
if (config->coerce_c_locale < 0) {
config->coerce_c_locale = 1;
}
- return;
}
}
@@ -909,7 +908,9 @@ _PyCoreConfig_Read(_PyCoreConfig *config)
}
}
- config_init_locale(config);
+ if (config->utf8_mode < 0 || config->coerce_c_locale < 0) {
+ config_init_locale(config);
+ }
if (config->_install_importlib) {
err = _PyCoreConfig_InitPathConfig(config);
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
index c2ee4ff..28704c1 100644
--- a/Python/pylifecycle.c
+++ b/Python/pylifecycle.c
@@ -805,7 +805,6 @@ _Py_InitializeCore(PyInterpreterState **interp_p,
{
assert(src_config != NULL);
-
PyMemAllocatorEx old_alloc;
_PyInitError err;