summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-11-30 10:34:47 (GMT)
committerGitHub <noreply@github.com>2018-11-30 10:34:47 (GMT)
commit55e498058faf8c97840556f6d791c2c392732dc3 (patch)
treeac475e1ca2c6e45b9d9fb9414e86dc2a674b9473 /Misc
parenta40700439195a119878150f4f0d425c42ca957ef (diff)
downloadcpython-55e498058faf8c97840556f6d791c2c392732dc3.zip
cpython-55e498058faf8c97840556f6d791c2c392732dc3.tar.gz
cpython-55e498058faf8c97840556f6d791c2c392732dc3.tar.bz2
bpo-35336: Fix PYTHONCOERCECLOCALE=1 (GH-10806)
Fix PYTHONCOERCECLOCALE=1 environment variable: only coerce the C locale if the LC_CTYPE locale is "C".
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-11-29-23-59-52.bpo-35336.8LOz4F.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-11-29-23-59-52.bpo-35336.8LOz4F.rst b/Misc/NEWS.d/next/Core and Builtins/2018-11-29-23-59-52.bpo-35336.8LOz4F.rst
new file mode 100644
index 0000000..28f8f9b
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-11-29-23-59-52.bpo-35336.8LOz4F.rst
@@ -0,0 +1,2 @@
+Fix PYTHONCOERCECLOCALE=1 environment variable: only coerce the C locale
+if the LC_CTYPE locale is "C".