aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/preconfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/preconfig.c')
-rw-r--r--Python/preconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/preconfig.c b/Python/preconfig.c
index 5b26c75de8b..67b2d2f2dc1 100644
--- a/Python/preconfig.c
+++ b/Python/preconfig.c
@@ -700,7 +700,7 @@ preconfig_init_coerce_c_locale(PyPreConfig *config)
/* Test if coerce_c_locale equals to -1 or equals to 1:
PYTHONCOERCECLOCALE=1 doesn't imply that the C locale is always coerced.
- It is only coerced if if the LC_CTYPE locale is "C". */
+ It is only coerced if the LC_CTYPE locale is "C". */
if (config->coerce_c_locale < 0 || config->coerce_c_locale == 1) {
/* The C locale enables the C locale coercion (PEP 538) */
if (_Py_LegacyLocaleDetected(0)) {