3b36b49
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
f15b897
index 9ffb714..3f7201a 100644
3b36b49
--- a/Doc/using/cmdline.rst
3b36b49
+++ b/Doc/using/cmdline.rst
f15b897
@@ -711,6 +711,45 @@ conflict.
3b36b49
 
3b36b49
    .. versionadded:: 3.6
3b36b49
 
3b36b49
+
3b36b49
+.. envvar:: PYTHONCOERCECLOCALE
3b36b49
+
8fbcd4d
+   If set to the value ``0``, causes the main Python command line application
3b36b49
+   to skip coercing the legacy ASCII-based C locale to a more capable UTF-8
3b36b49
+   based alternative. Note that this setting is checked even when the
3b36b49
+   :option:`-E` or :option:`-I` options are used, as it is handled prior to
3b36b49
+   the processing of command line options.
3b36b49
+
8fbcd4d
+   If this variable is *not* set, or is set to a value other than ``0``, and
8fbcd4d
+   the current locale reported for the ``LC_CTYPE`` category is the default
8fbcd4d
+   ``C`` locale, then the Python CLI will attempt to configure one of the
8fbcd4d
+   following locales for the given locale categories before loading the
8fbcd4d
+   interpreter runtime:
3b36b49
+
8fbcd4d
+   * ``C.UTF-8`` (``LC_ALL``)
8fbcd4d
+   * ``C.utf8`` (``LC_ALL``)
8fbcd4d
+   * ``UTF-8`` (``LC_CTYPE``)
3b36b49
+
3b36b49
+   If setting one of these locale categories succeeds, then the matching
8fbcd4d
+   environment variables will be set (both ``LC_ALL`` and ``LANG`` for the
8fbcd4d
+   ``LC_ALL`` category, and ``LC_CTYPE`` for the ``LC_CTYPE`` category) in
8fbcd4d
+   the current process environment before the Python runtime is initialized.
8fbcd4d
+
8fbcd4d
+   Configuring one of these locales (either explicitly or via the above
8fbcd4d
+   implicit locale coercion) will automatically set the error handler for
8fbcd4d
+   :data:`sys.stdin` and :data:`sys.stdout` to ``surrogateescape``. This
8fbcd4d
+   behavior can be overridden using :envvar:`PYTHONIOENCODING` as usual.
3b36b49
+
28f0c0c
+   For debugging purposes, setting ``PYTHONCOERCECLOCALE=warn`` will cause
28f0c0c
+   Python to emit warning messages on ``stderr`` if either the locale coercion
28f0c0c
+   activates, or else if a locale that *would* have triggered coercion is
28f0c0c
+   still active when the Python runtime is initialized.
28f0c0c
+
3b36b49
+   Availability: \*nix
3b36b49
+
3b36b49
+   .. versionadded:: 3.7
3b36b49
+      See :pep:`538` for more details.
3b36b49
+
3b36b49
 Debug-mode variables
3b36b49
 ~~~~~~~~~~~~~~~~~~~~
3b36b49
 
3b36b49
diff --git a/Lib/test/support/script_helper.py b/Lib/test/support/script_helper.py
28f0c0c
index ca5f9c2..7aa460b 100644
3b36b49
--- a/Lib/test/support/script_helper.py
3b36b49
+++ b/Lib/test/support/script_helper.py
28f0c0c
@@ -51,8 +51,35 @@ def interpreter_requires_environment():
3b36b49
     return __cached_interp_requires_environment
3b36b49
 
3b36b49
 
3b36b49
-_PythonRunResult = collections.namedtuple("_PythonRunResult",
3b36b49
-                                          ("rc", "out", "err"))
3b36b49
+class _PythonRunResult(collections.namedtuple("_PythonRunResult",
3b36b49
+                                          ("rc", "out", "err"))):
3b36b49
+    """Helper for reporting Python subprocess run results"""
3b36b49
+    def fail(self, cmd_line):
3b36b49
+        """Provide helpful details about failed subcommand runs"""
3b36b49
+        # Limit to 80 lines to ASCII characters
3b36b49
+        maxlen = 80 * 100
3b36b49
+        out, err = self.out, self.err
3b36b49
+        if len(out) > maxlen:
3b36b49
+            out = b'(... truncated stdout ...)' + out[-maxlen:]
3b36b49
+        if len(err) > maxlen:
3b36b49
+            err = b'(... truncated stderr ...)' + err[-maxlen:]
3b36b49
+        out = out.decode('ascii', 'replace').rstrip()
3b36b49
+        err = err.decode('ascii', 'replace').rstrip()
3b36b49
+        raise AssertionError("Process return code is %d\n"
3b36b49
+                             "command line: %r\n"
3b36b49
+                             "\n"
3b36b49
+                             "stdout:\n"
3b36b49
+                             "---\n"
3b36b49
+                             "%s\n"
3b36b49
+                             "---\n"
3b36b49
+                             "\n"
3b36b49
+                             "stderr:\n"
3b36b49
+                             "---\n"
3b36b49
+                             "%s\n"
3b36b49
+                             "---"
3b36b49
+                             % (self.rc, cmd_line,
3b36b49
+                                out,
3b36b49
+                                err))
3b36b49
 
3b36b49
 
3b36b49
 # Executing the interpreter in a subprocess
28f0c0c
@@ -110,30 +137,7 @@ def run_python_until_end(*args, **env_vars):
3b36b49
 def _assert_python(expected_success, *args, **env_vars):
3b36b49
     res, cmd_line = run_python_until_end(*args, **env_vars)
3b36b49
     if (res.rc and expected_success) or (not res.rc and not expected_success):
3b36b49
-        # Limit to 80 lines to ASCII characters
3b36b49
-        maxlen = 80 * 100
3b36b49
-        out, err = res.out, res.err
3b36b49
-        if len(out) > maxlen:
3b36b49
-            out = b'(... truncated stdout ...)' + out[-maxlen:]
3b36b49
-        if len(err) > maxlen:
3b36b49
-            err = b'(... truncated stderr ...)' + err[-maxlen:]
3b36b49
-        out = out.decode('ascii', 'replace').rstrip()
3b36b49
-        err = err.decode('ascii', 'replace').rstrip()
3b36b49
-        raise AssertionError("Process return code is %d\n"
3b36b49
-                             "command line: %r\n"
3b36b49
-                             "\n"
3b36b49
-                             "stdout:\n"
3b36b49
-                             "---\n"
3b36b49
-                             "%s\n"
3b36b49
-                             "---\n"
3b36b49
-                             "\n"
3b36b49
-                             "stderr:\n"
3b36b49
-                             "---\n"
3b36b49
-                             "%s\n"
3b36b49
-                             "---"
3b36b49
-                             % (res.rc, cmd_line,
3b36b49
-                                out,
3b36b49
-                                err))
3b36b49
+        res.fail(cmd_line)
3b36b49
     return res
3b36b49
 
3b36b49
 def assert_python_ok(*args, **env_vars):
e890527
diff --git a/Lib/test/test_c_locale_coercion.py b/Lib/test/test_c_locale_coercion.py
e890527
new file mode 100644
8ff3972
index 0000000..635c98f
e890527
--- /dev/null
e890527
+++ b/Lib/test/test_c_locale_coercion.py
8ff3972
@@ -0,0 +1,371 @@
e890527
+# Tests the attempted automatic coercion of the C locale to a UTF-8 locale
e890527
+
e890527
+import unittest
8ff3972
+import locale
e890527
+import os
e890527
+import sys
e890527
+import sysconfig
e890527
+import shutil
e890527
+import subprocess
e890527
+from collections import namedtuple
e890527
+
e890527
+import test.support
e890527
+from test.support.script_helper import (
e890527
+    run_python_until_end,
e890527
+    interpreter_requires_environment,
e890527
+)
e890527
+
28f0c0c
+# Set our expectation for the default encoding used in the C locale
28f0c0c
+# for the filesystem encoding and the standard streams
8ff3972
+
8ff3972
+# AIX uses iso8859-1 in the C locale, other *nix platforms use ASCII
8ff3972
+if sys.platform.startswith("aix"):
8ff3972
+    C_LOCALE_STREAM_ENCODING = "iso8859-1"
8ff3972
+else:
8ff3972
+    C_LOCALE_STREAM_ENCODING = "ascii"
8ff3972
+
8ff3972
+# FS encoding is UTF-8 on macOS, other *nix platforms use the locale encoding
28f0c0c
+if sys.platform == "darwin":
28f0c0c
+    C_LOCALE_FS_ENCODING = "utf-8"
28f0c0c
+else:
28f0c0c
+    C_LOCALE_FS_ENCODING = C_LOCALE_STREAM_ENCODING
28f0c0c
+
28f0c0c
+# Note that the above is probably still wrong in some cases, such as:
28f0c0c
+# * Windows when PYTHONLEGACYWINDOWSFSENCODING is set
28f0c0c
+# * AIX and any other platforms that use latin-1 in the C locale
28f0c0c
+#
28f0c0c
+# Options for dealing with this:
28f0c0c
+# * Don't set PYTHON_COERCE_C_LOCALE on such platforms (e.g. Windows doesn't)
28f0c0c
+# * Fix the test expectations to match the actual platform behaviour
28f0c0c
+
e890527
+# In order to get the warning messages to match up as expected, the candidate
e890527
+# order here must much the target locale order in Python/pylifecycle.c
8ff3972
+_C_UTF8_LOCALES = ("C.UTF-8", "C.utf8", "UTF-8")
e890527
+
e890527
+# There's no reliable cross-platform way of checking locale alias
e890527
+# lists, so the only way of knowing which of these locales will work
e890527
+# is to try them with locale.setlocale(). We do that in a subprocess
e890527
+# to avoid altering the locale of the test runner.
8ff3972
+#
8ff3972
+# If the relevant locale module attributes exist, and we're not on a platform
8ff3972
+# where we expect it to always succeed, we also check that
8ff3972
+# `locale.nl_langinfo(locale.CODESET)` works, as if it fails, the interpreter
8ff3972
+# will skip locale coercion for that particular target locale
8ff3972
+_check_nl_langinfo_CODESET = bool(
8ff3972
+    sys.platform not in ("darwin", "linux") and
8ff3972
+    hasattr(locale, "nl_langinfo") and
8ff3972
+    hasattr(locale, "CODESET")
8ff3972
+)
8ff3972
+
e890527
+def _set_locale_in_subprocess(locale_name):
e890527
+    cmd_fmt = "import locale; print(locale.setlocale(locale.LC_CTYPE, '{}'))"
8ff3972
+    if _check_nl_langinfo_CODESET:
8ff3972
+        # If there's no valid CODESET, we expect coercion to be skipped
8ff3972
+        cmd_fmt += "; import sys; sys.exit(not locale.nl_langinfo(locale.CODESET))"
e890527
+    cmd = cmd_fmt.format(locale_name)
e890527
+    result, py_cmd = run_python_until_end("-c", cmd, __isolated=True)
e890527
+    return result.rc == 0
e890527
+
8ff3972
+
8ff3972
+
28f0c0c
+_fields = "fsencoding stdin_info stdout_info stderr_info lang lc_ctype lc_all"
28f0c0c
+_EncodingDetails = namedtuple("EncodingDetails", _fields)
e890527
+
e890527
+class EncodingDetails(_EncodingDetails):
28f0c0c
+    # XXX (ncoghlan): Using JSON for child state reporting may be less fragile
e890527
+    CHILD_PROCESS_SCRIPT = ";".join([
28f0c0c
+        "import sys, os",
e890527
+        "print(sys.getfilesystemencoding())",
e890527
+        "print(sys.stdin.encoding + ':' + sys.stdin.errors)",
e890527
+        "print(sys.stdout.encoding + ':' + sys.stdout.errors)",
e890527
+        "print(sys.stderr.encoding + ':' + sys.stderr.errors)",
28f0c0c
+        "print(os.environ.get('LANG', 'not set'))",
28f0c0c
+        "print(os.environ.get('LC_CTYPE', 'not set'))",
28f0c0c
+        "print(os.environ.get('LC_ALL', 'not set'))",
e890527
+    ])
e890527
+
e890527
+    @classmethod
28f0c0c
+    def get_expected_details(cls, coercion_expected, fs_encoding, stream_encoding, env_vars):
e890527
+        """Returns expected child process details for a given encoding"""
28f0c0c
+        _stream = stream_encoding + ":{}"
e890527
+        # stdin and stdout should use surrogateescape either because the
e890527
+        # coercion triggered, or because the C locale was detected
e890527
+        stream_info = 2*[_stream.format("surrogateescape")]
e890527
+        # stderr should always use backslashreplace
e890527
+        stream_info.append(_stream.format("backslashreplace"))
28f0c0c
+        expected_lang = env_vars.get("LANG", "not set").lower()
28f0c0c
+        if coercion_expected:
28f0c0c
+            expected_lc_ctype = CLI_COERCION_TARGET.lower()
28f0c0c
+        else:
28f0c0c
+            expected_lc_ctype = env_vars.get("LC_CTYPE", "not set").lower()
28f0c0c
+        expected_lc_all = env_vars.get("LC_ALL", "not set").lower()
28f0c0c
+        env_info = expected_lang, expected_lc_ctype, expected_lc_all
28f0c0c
+        return dict(cls(fs_encoding, *stream_info, *env_info)._asdict())
e890527
+
e890527
+    @staticmethod
e890527
+    def _handle_output_variations(data):
e890527
+        """Adjust the output to handle platform specific idiosyncrasies
e890527
+
e890527
+        * Some platforms report ASCII as ANSI_X3.4-1968
e890527
+        * Some platforms report ASCII as US-ASCII
e890527
+        * Some platforms report UTF-8 instead of utf-8
e890527
+        """
e890527
+        data = data.replace(b"ANSI_X3.4-1968", b"ascii")
e890527
+        data = data.replace(b"US-ASCII", b"ascii")
e890527
+        data = data.lower()
e890527
+        return data
e890527
+
e890527
+    @classmethod
e890527
+    def get_child_details(cls, env_vars):
e890527
+        """Retrieves fsencoding and standard stream details from a child process
e890527
+
e890527
+        Returns (encoding_details, stderr_lines):
e890527
+
e890527
+        - encoding_details: EncodingDetails for eager decoding
e890527
+        - stderr_lines: result of calling splitlines() on the stderr output
e890527
+
e890527
+        The child is run in isolated mode if the current interpreter supports
e890527
+        that.
e890527
+        """
e890527
+        result, py_cmd = run_python_until_end(
e890527
+            "-c", cls.CHILD_PROCESS_SCRIPT,
e890527
+            __isolated=True,
e890527
+            **env_vars
e890527
+        )
e890527
+        if not result.rc == 0:
e890527
+            result.fail(py_cmd)
e890527
+        # All subprocess outputs in this test case should be pure ASCII
e890527
+        adjusted_output = cls._handle_output_variations(result.out)
28f0c0c
+        stdout_lines = adjusted_output.decode("ascii").splitlines()
e890527
+        child_encoding_details = dict(cls(*stdout_lines)._asdict())
e890527
+        stderr_lines = result.err.decode("ascii").rstrip().splitlines()
e890527
+        return child_encoding_details, stderr_lines
e890527
+
e890527
+
e890527
+# Details of the shared library warning emitted at runtime
28f0c0c
+LEGACY_LOCALE_WARNING = (
e890527
+    "Python runtime initialized with LC_CTYPE=C (a locale with default ASCII "
e890527
+    "encoding), which may cause Unicode compatibility problems. Using C.UTF-8, "
e890527
+    "C.utf8, or UTF-8 (if available) as alternative Unicode-compatible "
e890527
+    "locales is recommended."
e890527
+)
e890527
+
e890527
+# Details of the CLI locale coercion warning emitted at runtime
e890527
+CLI_COERCION_WARNING_FMT = (
28f0c0c
+    "Python detected LC_CTYPE=C: LC_CTYPE coerced to {} (set another locale "
e890527
+    "or PYTHONCOERCECLOCALE=0 to disable this locale coercion behavior)."
e890527
+)
e890527
+
e890527
+
28f0c0c
+AVAILABLE_TARGETS = None
28f0c0c
+CLI_COERCION_TARGET = None
28f0c0c
+CLI_COERCION_WARNING = None
e890527
+
28f0c0c
+def setUpModule():
28f0c0c
+    global AVAILABLE_TARGETS
28f0c0c
+    global CLI_COERCION_TARGET
28f0c0c
+    global CLI_COERCION_WARNING
28f0c0c
+
28f0c0c
+    if AVAILABLE_TARGETS is not None:
28f0c0c
+        # initialization already done
28f0c0c
+        return
28f0c0c
+    AVAILABLE_TARGETS = []
28f0c0c
+
28f0c0c
+    # Find the target locales available in the current system
28f0c0c
+    for target_locale in _C_UTF8_LOCALES:
28f0c0c
+        if _set_locale_in_subprocess(target_locale):
28f0c0c
+            AVAILABLE_TARGETS.append(target_locale)
28f0c0c
+
28f0c0c
+    if AVAILABLE_TARGETS:
28f0c0c
+        # Coercion is expected to use the first available target locale
28f0c0c
+        CLI_COERCION_TARGET = AVAILABLE_TARGETS[0]
28f0c0c
+        CLI_COERCION_WARNING = CLI_COERCION_WARNING_FMT.format(CLI_COERCION_TARGET)
28f0c0c
+
28f0c0c
+
28f0c0c
+class _LocaleHandlingTestCase(unittest.TestCase):
28f0c0c
+    # Base class to check expected locale handling behaviour
28f0c0c
+
28f0c0c
+    def _check_child_encoding_details(self,
28f0c0c
+                                      env_vars,
28f0c0c
+                                      expected_fs_encoding,
28f0c0c
+                                      expected_stream_encoding,
28f0c0c
+                                      expected_warnings,
28f0c0c
+                                      coercion_expected):
28f0c0c
+        """Check the C locale handling for the given process environment
28f0c0c
+
28f0c0c
+        Parameters:
28f0c0c
+            expected_fs_encoding: expected sys.getfilesystemencoding() result
28f0c0c
+            expected_stream_encoding: expected encoding for standard streams
28f0c0c
+            expected_warning: stderr output to expect (if any)
28f0c0c
+        """
28f0c0c
+        result = EncodingDetails.get_child_details(env_vars)
28f0c0c
+        encoding_details, stderr_lines = result
28f0c0c
+        expected_details = EncodingDetails.get_expected_details(
28f0c0c
+            coercion_expected,
28f0c0c
+            expected_fs_encoding,
28f0c0c
+            expected_stream_encoding,
28f0c0c
+            env_vars
e890527
+        )
28f0c0c
+        self.assertEqual(encoding_details, expected_details)
28f0c0c
+        if expected_warnings is None:
28f0c0c
+            expected_warnings = []
28f0c0c
+        self.assertEqual(stderr_lines, expected_warnings)
e890527
+
e890527
+
28f0c0c
+class LocaleConfigurationTests(_LocaleHandlingTestCase):
e890527
+    # Test explicit external configuration via the process environment
e890527
+
28f0c0c
+    def setUpClass():
28f0c0c
+        # This relies on setupModule() having been run, so it can't be
28f0c0c
+        # handled via the @unittest.skipUnless decorator
28f0c0c
+        if not AVAILABLE_TARGETS:
28f0c0c
+            raise unittest.SkipTest("No C-with-UTF-8 locale available")
28f0c0c
+
e890527
+    def test_external_target_locale_configuration(self):
28f0c0c
+
e890527
+        # Explicitly setting a target locale should give the same behaviour as
e890527
+        # is seen when implicitly coercing to that target locale
e890527
+        self.maxDiff = None
e890527
+
28f0c0c
+        expected_fs_encoding = "utf-8"
28f0c0c
+        expected_stream_encoding = "utf-8"
e890527
+
e890527
+        base_var_dict = {
e890527
+            "LANG": "",
e890527
+            "LC_CTYPE": "",
e890527
+            "LC_ALL": "",
e890527
+        }
e890527
+        for env_var in ("LANG", "LC_CTYPE"):
28f0c0c
+            for locale_to_set in AVAILABLE_TARGETS:
28f0c0c
+                # XXX (ncoghlan): LANG=UTF-8 doesn't appear to work as
28f0c0c
+                #                 expected, so skip that combination for now
28f0c0c
+                # See https://bugs.python.org/issue30672 for discussion
28f0c0c
+                if env_var == "LANG" and locale_to_set == "UTF-8":
28f0c0c
+                    continue
28f0c0c
+
e890527
+                with self.subTest(env_var=env_var,
e890527
+                                  configured_locale=locale_to_set):
e890527
+                    var_dict = base_var_dict.copy()
e890527
+                    var_dict[env_var] = locale_to_set
e890527
+                    self._check_child_encoding_details(var_dict,
28f0c0c
+                                                       expected_fs_encoding,
28f0c0c
+                                                       expected_stream_encoding,
28f0c0c
+                                                       expected_warnings=None,
28f0c0c
+                                                       coercion_expected=False)
e890527
+
e890527
+
e890527
+
e890527
+@test.support.cpython_only
e890527
+@unittest.skipUnless(sysconfig.get_config_var("PY_COERCE_C_LOCALE"),
e890527
+                     "C locale coercion disabled at build time")
28f0c0c
+class LocaleCoercionTests(_LocaleHandlingTestCase):
e890527
+    # Test implicit reconfiguration of the environment during CLI startup
e890527
+
28f0c0c
+    def _check_c_locale_coercion(self,
28f0c0c
+                                 fs_encoding, stream_encoding,
28f0c0c
+                                 coerce_c_locale,
28f0c0c
+                                 expected_warnings=None,
28f0c0c
+                                 coercion_expected=True,
28f0c0c
+                                 **extra_vars):
e890527
+        """Check the C locale handling for various configurations
e890527
+
e890527
+        Parameters:
28f0c0c
+            fs_encoding: expected sys.getfilesystemencoding() result
28f0c0c
+            stream_encoding: expected encoding for standard streams
28f0c0c
+            coerce_c_locale: setting to use for PYTHONCOERCECLOCALE
e890527
+              None: don't set the variable at all
e890527
+              str: the value set in the child's environment
28f0c0c
+            expected_warnings: expected warning lines on stderr
28f0c0c
+            extra_vars: additional environment variables to set in subprocess
e890527
+        """
e890527
+        self.maxDiff = None
e890527
+
28f0c0c
+        if not AVAILABLE_TARGETS:
28f0c0c
+            # Locale coercion is disabled when there aren't any target locales
28f0c0c
+            fs_encoding = C_LOCALE_FS_ENCODING
28f0c0c
+            stream_encoding = C_LOCALE_STREAM_ENCODING
28f0c0c
+            coercion_expected = False
28f0c0c
+            if expected_warnings:
28f0c0c
+                expected_warnings = [LEGACY_LOCALE_WARNING]
e890527
+
e890527
+        base_var_dict = {
e890527
+            "LANG": "",
e890527
+            "LC_CTYPE": "",
e890527
+            "LC_ALL": "",
e890527
+        }
28f0c0c
+        base_var_dict.update(extra_vars)
e890527
+        for env_var in ("LANG", "LC_CTYPE"):
e890527
+            for locale_to_set in ("", "C", "POSIX", "invalid.ascii"):
28f0c0c
+                # XXX (ncoghlan): *BSD platforms don't behave as expected in the
28f0c0c
+                #                 POSIX locale, so we skip that for now
28f0c0c
+                # See https://bugs.python.org/issue30672 for discussion
28f0c0c
+                if locale_to_set == "POSIX":
28f0c0c
+                    continue
e890527
+                with self.subTest(env_var=env_var,
e890527
+                                  nominal_locale=locale_to_set,
e890527
+                                  PYTHONCOERCECLOCALE=coerce_c_locale):
e890527
+                    var_dict = base_var_dict.copy()
e890527
+                    var_dict[env_var] = locale_to_set
e890527
+                    if coerce_c_locale is not None:
e890527
+                        var_dict["PYTHONCOERCECLOCALE"] = coerce_c_locale
28f0c0c
+                    # Check behaviour on successful coercion
e890527
+                    self._check_child_encoding_details(var_dict,
28f0c0c
+                                                       fs_encoding,
28f0c0c
+                                                       stream_encoding,
28f0c0c
+                                                       expected_warnings,
28f0c0c
+                                                       coercion_expected)
e890527
+
e890527
+    def test_test_PYTHONCOERCECLOCALE_not_set(self):
e890527
+        # This should coerce to the first available target locale by default
28f0c0c
+        self._check_c_locale_coercion("utf-8", "utf-8", coerce_c_locale=None)
e890527
+
e890527
+    def test_PYTHONCOERCECLOCALE_not_zero(self):
28f0c0c
+        # *Any* string other than "0" is considered "set" for our purposes
e890527
+        # and hence should result in the locale coercion being enabled
e890527
+        for setting in ("", "1", "true", "false"):
28f0c0c
+            self._check_c_locale_coercion("utf-8", "utf-8", coerce_c_locale=setting)
28f0c0c
+
28f0c0c
+    def test_PYTHONCOERCECLOCALE_set_to_warn(self):
28f0c0c
+        # PYTHONCOERCECLOCALE=warn enables runtime warnings for legacy locales
28f0c0c
+        self._check_c_locale_coercion("utf-8", "utf-8",
28f0c0c
+                                      coerce_c_locale="warn",
28f0c0c
+                                      expected_warnings=[CLI_COERCION_WARNING])
28f0c0c
+
e890527
+
e890527
+    def test_PYTHONCOERCECLOCALE_set_to_zero(self):
e890527
+        # The setting "0" should result in the locale coercion being disabled
28f0c0c
+        self._check_c_locale_coercion(C_LOCALE_FS_ENCODING,
28f0c0c
+                                      C_LOCALE_STREAM_ENCODING,
28f0c0c
+                                      coerce_c_locale="0",
28f0c0c
+                                      coercion_expected=False)
28f0c0c
+        # Setting LC_ALL=C shouldn't make any difference to the behaviour
28f0c0c
+        self._check_c_locale_coercion(C_LOCALE_FS_ENCODING,
28f0c0c
+                                      C_LOCALE_STREAM_ENCODING,
28f0c0c
+                                      coerce_c_locale="0",
28f0c0c
+                                      LC_ALL="C",
28f0c0c
+                                      coercion_expected=False)
28f0c0c
+
28f0c0c
+    def test_LC_ALL_set_to_C(self):
28f0c0c
+        # Setting LC_ALL should render the locale coercion ineffective
28f0c0c
+        self._check_c_locale_coercion(C_LOCALE_FS_ENCODING,
28f0c0c
+                                      C_LOCALE_STREAM_ENCODING,
28f0c0c
+                                      coerce_c_locale=None,
28f0c0c
+                                      LC_ALL="C",
28f0c0c
+                                      coercion_expected=False)
28f0c0c
+        # And result in a warning about a lack of locale compatibility
28f0c0c
+        self._check_c_locale_coercion(C_LOCALE_FS_ENCODING,
28f0c0c
+                                      C_LOCALE_STREAM_ENCODING,
28f0c0c
+                                      coerce_c_locale="warn",
28f0c0c
+                                      LC_ALL="C",
28f0c0c
+                                      expected_warnings=[LEGACY_LOCALE_WARNING],
28f0c0c
+                                      coercion_expected=False)
e890527
+
e890527
+def test_main():
e890527
+    test.support.run_unittest(
e890527
+        LocaleConfigurationTests,
28f0c0c
+        LocaleCoercionTests
e890527
+    )
e890527
+    test.support.reap_children()
e890527
+
e890527
+if __name__ == "__main__":
e890527
+    test_main()
3b36b49
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
f15b897
index 6e4286e..594dfa9 100644
3b36b49
--- a/Lib/test/test_capi.py
3b36b49
+++ b/Lib/test/test_capi.py
f15b897
@@ -425,32 +425,21 @@ class EmbeddingTests(unittest.TestCase):
f15b897
     def test_repeated_init_and_subinterpreters(self):
3b36b49
         # This is just a "don't crash" test
f15b897
         out, err = self.run_embedded_interpreter('repeated_init_and_subinterpreters')
3b36b49
-        if support.verbose:
3b36b49
+        if support.verbose > 1:
3b36b49
             print()
3b36b49
             print(out)
3b36b49
             print(err)
8fbcd4d
 
28f0c0c
-    @staticmethod
28f0c0c
-    def _get_default_pipe_encoding():
28f0c0c
-        rp, wp = os.pipe()
28f0c0c
-        try:
28f0c0c
-            with os.fdopen(wp, 'w') as w:
28f0c0c
-                default_pipe_encoding = w.encoding
28f0c0c
-        finally:
28f0c0c
-            os.close(rp)
28f0c0c
-        return default_pipe_encoding
28f0c0c
-
3b36b49
     def test_forced_io_encoding(self):
3b36b49
         # Checks forced configuration of embedded interpreter IO streams
f15b897
         env = dict(os.environ, PYTHONIOENCODING="utf-8:surrogateescape")
f15b897
         out, err = self.run_embedded_interpreter("forced_io_encoding", env=env)
3b36b49
-        if support.verbose:
3b36b49
+        if support.verbose > 1:
3b36b49
             print()
3b36b49
             print(out)
3b36b49
             print(err)
f15b897
         expected_stream_encoding = "utf-8"
f15b897
         expected_errors = "surrogateescape"
28f0c0c
-        expected_pipe_encoding = self._get_default_pipe_encoding()
3b36b49
         expected_output = '\n'.join([
3b36b49
         "--- Use defaults ---",
28f0c0c
         "Expected encoding: default",
3b36b49
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py
28f0c0c
index ae2bcd4..0a302ff 100644
3b36b49
--- a/Lib/test/test_cmd_line.py
3b36b49
+++ b/Lib/test/test_cmd_line.py
28f0c0c
@@ -151,6 +152,7 @@ class CmdLineTest(unittest.TestCase):
3b36b49
         env = os.environ.copy()
3b36b49
         # Use C locale to get ascii for the locale encoding
3b36b49
         env['LC_ALL'] = 'C'
3b36b49
+        env['PYTHONCOERCECLOCALE'] = '0'
3b36b49
         code = (
3b36b49
             b'import locale; '
3b36b49
             b'print(ascii("' + undecodable + b'"), '
3b36b49
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py
f15b897
index 7866a5c..b41239a 100644
3b36b49
--- a/Lib/test/test_sys.py
3b36b49
+++ b/Lib/test/test_sys.py
28f0c0c
@@ -680,6 +680,7 @@ class SysModuleTest(unittest.TestCase):
3b36b49
         # Force the POSIX locale
3b36b49
         env = os.environ.copy()
3b36b49
         env["LC_ALL"] = "C"
3b36b49
+        env["PYTHONCOERCECLOCALE"] = "0"
3b36b49
         code = '\n'.join((
3b36b49
             'import sys',
3b36b49
             'def dump(name):',
28f0c0c
diff --git a/Modules/main.c b/Modules/main.c
f15b897
index b0fb78f..0d8590a 100644
28f0c0c
--- a/Modules/main.c
28f0c0c
+++ b/Modules/main.c
28f0c0c
@@ -105,7 +105,11 @@ static const char usage_6[] =
28f0c0c
 "   predictable seed.\n"
28f0c0c
 "PYTHONMALLOC: set the Python memory allocators and/or install debug hooks\n"
28f0c0c
 "   on Python memory allocators. Use PYTHONMALLOC=debug to install debug\n"
28f0c0c
-"   hooks.\n";
28f0c0c
+"   hooks.\n"
28f0c0c
+
28f0c0c
+"PYTHONCOERCECLOCALE: if this variable is set to 0, it disables the locale\n"
28f0c0c
+"   coercion behavior. Use PYTHONCOERCECLOCALE=warn to request display of\n"
28f0c0c
+"   locale coercion and locale compatibility warnings on stderr.\n";
28f0c0c
 
28f0c0c
 static int
28f0c0c
 usage(int exitcode, const wchar_t* program)
3b36b49
diff --git a/Programs/_testembed.c b/Programs/_testembed.c
f15b897
index b0f9087..da892bf 100644
3b36b49
--- a/Programs/_testembed.c
3b36b49
+++ b/Programs/_testembed.c
3b36b49
@@ -1,4 +1,5 @@
f15b897
 #include <Python.h>
3b36b49
+#include "pyconfig.h"
f15b897
 #include "pythread.h"
3b36b49
 #include <stdio.h>
3b36b49
 
3b36b49
diff --git a/Programs/python.c b/Programs/python.c
8fbcd4d
index a7afbc7..03f8295 100644
3b36b49
--- a/Programs/python.c
3b36b49
+++ b/Programs/python.c
8fbcd4d
@@ -15,6 +15,21 @@ wmain(int argc, wchar_t **argv)
3b36b49
 }
3b36b49
 #else
3b36b49
 
8fbcd4d
+/* Access private pylifecycle helper API to better handle the legacy C locale
3b36b49
+ *
3b36b49
+ * The legacy C locale assumes ASCII as the default text encoding, which
3b36b49
+ * causes problems not only for the CPython runtime, but also other
3b36b49
+ * components like GNU readline.
3b36b49
+ *
3b36b49
+ * Accordingly, when the CLI detects it, it attempts to coerce it to a
3b36b49
+ * more capable UTF-8 based alternative.
3b36b49
+ *
3b36b49
+ * See the documentation of the PYTHONCOERCECLOCALE setting for more details.
3b36b49
+ *
3b36b49
+ */
8fbcd4d
+extern int _Py_LegacyLocaleDetected(void);
8fbcd4d
+extern void _Py_CoerceLegacyLocale(void);
3b36b49
+
8fbcd4d
 int
8fbcd4d
 main(int argc, char **argv)
8fbcd4d
 {
8fbcd4d
@@ -25,7 +40,11 @@ main(int argc, char **argv)
8fbcd4d
     char *oldloc;
8fbcd4d
 
8fbcd4d
     /* Force malloc() allocator to bootstrap Python */
8fbcd4d
+#ifdef Py_DEBUG
8fbcd4d
+    (void)_PyMem_SetupAllocators("malloc_debug");
8fbcd4d
+#  else
8fbcd4d
     (void)_PyMem_SetupAllocators("malloc");
8fbcd4d
+#  endif
8fbcd4d
 
8fbcd4d
     argv_copy = (wchar_t **)PyMem_RawMalloc(sizeof(wchar_t*) * (argc+1));
8fbcd4d
     argv_copy2 = (wchar_t **)PyMem_RawMalloc(sizeof(wchar_t*) * (argc+1));
8fbcd4d
@@ -49,7 +68,21 @@ main(int argc, char **argv)
8fbcd4d
         return 1;
8fbcd4d
     }
8fbcd4d
 
8fbcd4d
+#ifdef __ANDROID__
8fbcd4d
+    /* Passing "" to setlocale() on Android requests the C locale rather
8fbcd4d
+     * than checking environment variables, so request C.UTF-8 explicitly
8fbcd4d
+     */
8fbcd4d
+    setlocale(LC_ALL, "C.UTF-8");
8fbcd4d
+#else
8fbcd4d
+    /* Reconfigure the locale to the default for this process */
8fbcd4d
     setlocale(LC_ALL, "");
8fbcd4d
+#endif
8fbcd4d
+
8fbcd4d
+    if (_Py_LegacyLocaleDetected()) {
8fbcd4d
+        _Py_CoerceLegacyLocale();
8fbcd4d
+    }
8fbcd4d
+
8fbcd4d
+    /* Convert from char to wchar_t based on the locale settings */
8fbcd4d
     for (i = 0; i < argc; i++) {
8fbcd4d
         argv_copy[i] = Py_DecodeLocale(argv[i], NULL);
8fbcd4d
         if (!argv_copy[i]) {
8fbcd4d
@@ -70,7 +103,11 @@ main(int argc, char **argv)
8fbcd4d
 
8fbcd4d
     /* Force again malloc() allocator to release memory blocks allocated
8fbcd4d
        before Py_Main() */
8fbcd4d
+#ifdef Py_DEBUG
8fbcd4d
+    (void)_PyMem_SetupAllocators("malloc_debug");
8fbcd4d
+#  else
8fbcd4d
     (void)_PyMem_SetupAllocators("malloc");
8fbcd4d
+#  endif
8fbcd4d
 
8fbcd4d
     for (i = 0; i < argc; i++) {
8fbcd4d
         PyMem_RawFree(argv_copy2[i]);
8fbcd4d
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c
f15b897
index 640271f..2a22b24 100644
8fbcd4d
--- a/Python/pylifecycle.c
8fbcd4d
+++ b/Python/pylifecycle.c
8fbcd4d
@@ -167,6 +167,7 @@ Py_SetStandardStreamEncoding(const char *encoding, const char *errors)
8fbcd4d
     return 0;
8fbcd4d
 }
8fbcd4d
 
8fbcd4d
+
8fbcd4d
 /* Global initializations.  Can be undone by Py_FinalizeEx().  Don't
8fbcd4d
    call this twice without an intervening Py_FinalizeEx() call.  When
8fbcd4d
    initializations fail, a fatal error is issued and the function does
8ff3972
@@ -301,6 +302,183 @@ import_init(PyInterpreterState *interp, PyObject *sysmod)
8fbcd4d
 }
8fbcd4d
 
8fbcd4d
 
8fbcd4d
+/* Helper functions to better handle the legacy C locale
8fbcd4d
+ *
8fbcd4d
+ * The legacy C locale assumes ASCII as the default text encoding, which
8fbcd4d
+ * causes problems not only for the CPython runtime, but also other
8fbcd4d
+ * components like GNU readline.
8fbcd4d
+ *
8fbcd4d
+ * Accordingly, when the CLI detects it, it attempts to coerce it to a
8fbcd4d
+ * more capable UTF-8 based alternative as follows:
8fbcd4d
+ *
8fbcd4d
+ *     if (_Py_LegacyLocaleDetected()) {
8fbcd4d
+ *         _Py_CoerceLegacyLocale();
8fbcd4d
+ *     }
8fbcd4d
+ *
8fbcd4d
+ * See the documentation of the PYTHONCOERCECLOCALE setting for more details.
8fbcd4d
+ *
8fbcd4d
+ * Locale coercion also impacts the default error handler for the standard
8fbcd4d
+ * streams: while the usual default is "strict", the default for the legacy
8fbcd4d
+ * C locale and for any of the coercion target locales is "surrogateescape".
8fbcd4d
+ */
8fbcd4d
+
8fbcd4d
+int
8fbcd4d
+_Py_LegacyLocaleDetected(void)
8fbcd4d
+{
28f0c0c
+#ifndef MS_WINDOWS
28f0c0c
+    /* On non-Windows systems, the C locale is considered a legacy locale */
28f0c0c
+    /* XXX (ncoghlan): some platforms (notably Mac OS X) don't appear to treat
28f0c0c
+     *                 the POSIX locale as a simple alias for the C locale, so
28f0c0c
+     *                 we may also want to check for that explicitly.
28f0c0c
+     */
8fbcd4d
+    const char *ctype_loc = setlocale(LC_CTYPE, NULL);
8fbcd4d
+    return ctype_loc != NULL && strcmp(ctype_loc, "C") == 0;
28f0c0c
+#else
28f0c0c
+    /* Windows uses code pages instead of locales, so no locale is legacy */
28f0c0c
+    return 0;
28f0c0c
+#endif
28f0c0c
+}
28f0c0c
+
28f0c0c
+
28f0c0c
+static const char *_C_LOCALE_WARNING =
28f0c0c
+    "Python runtime initialized with LC_CTYPE=C (a locale with default ASCII "
28f0c0c
+    "encoding), which may cause Unicode compatibility problems. Using C.UTF-8, "
28f0c0c
+    "C.utf8, or UTF-8 (if available) as alternative Unicode-compatible "
28f0c0c
+    "locales is recommended.\n";
28f0c0c
+
28f0c0c
+static int
28f0c0c
+_legacy_locale_warnings_enabled(void)
28f0c0c
+{
28f0c0c
+    const char *coerce_c_locale = getenv("PYTHONCOERCECLOCALE");
28f0c0c
+    return (coerce_c_locale != NULL &&
28f0c0c
+            strncmp(coerce_c_locale, "warn", 5) == 0);
28f0c0c
+}
28f0c0c
+
28f0c0c
+static void
28f0c0c
+_emit_stderr_warning_for_legacy_locale(void)
28f0c0c
+{
28f0c0c
+    if (_legacy_locale_warnings_enabled()) {
28f0c0c
+        if (_Py_LegacyLocaleDetected()) {
28f0c0c
+            fprintf(stderr, "%s", _C_LOCALE_WARNING);
28f0c0c
+        }
28f0c0c
+    }
8fbcd4d
+}
3b36b49
+
3b36b49
+typedef struct _CandidateLocale {
e890527
+    const char *locale_name; /* The locale to try as a coercion target */
3b36b49
+} _LocaleCoercionTarget;
3b36b49
+
3b36b49
+static _LocaleCoercionTarget _TARGET_LOCALES[] = {
28f0c0c
+    {"C.UTF-8"},
28f0c0c
+    {"C.utf8"},
8ff3972
+    {"UTF-8"},
28f0c0c
+    {NULL}
3b36b49
+};
3b36b49
+
8fbcd4d
+static char *
8fbcd4d
+get_default_standard_stream_error_handler(void)
8fbcd4d
+{
8fbcd4d
+    const char *ctype_loc = setlocale(LC_CTYPE, NULL);
8fbcd4d
+    if (ctype_loc != NULL) {
8fbcd4d
+        /* "surrogateescape" is the default in the legacy C locale */
8fbcd4d
+        if (strcmp(ctype_loc, "C") == 0) {
8fbcd4d
+            return "surrogateescape";
8fbcd4d
+        }
8fbcd4d
+
28f0c0c
+#ifdef PY_COERCE_C_LOCALE
8fbcd4d
+        /* "surrogateescape" is the default in locale coercion target locales */
8fbcd4d
+        const _LocaleCoercionTarget *target = NULL;
8fbcd4d
+        for (target = _TARGET_LOCALES; target->locale_name; target++) {
8fbcd4d
+            if (strcmp(ctype_loc, target->locale_name) == 0) {
8fbcd4d
+                return "surrogateescape";
8fbcd4d
+            }
8fbcd4d
+        }
28f0c0c
+#endif
8fbcd4d
+   }
8fbcd4d
+
8fbcd4d
+   /* Otherwise return NULL to request the typical default error handler */
8fbcd4d
+   return NULL;
8fbcd4d
+}
8fbcd4d
+
8fbcd4d
+#ifdef PY_COERCE_C_LOCALE
8fbcd4d
+static const char *_C_LOCALE_COERCION_WARNING =
28f0c0c
+    "Python detected LC_CTYPE=C: LC_CTYPE coerced to %.20s (set another locale "
8fbcd4d
+    "or PYTHONCOERCECLOCALE=0 to disable this locale coercion behavior).\n";
8fbcd4d
+
8fbcd4d
+static void
3b36b49
+_coerce_default_locale_settings(const _LocaleCoercionTarget *target)
3b36b49
+{
28f0c0c
+
3b36b49
+    const char *newloc = target->locale_name;
3b36b49
+
3b36b49
+    /* Reset locale back to currently configured defaults */
3b36b49
+    setlocale(LC_ALL, "");
3b36b49
+
28f0c0c
+    /* Set the relevant locale environment variable */
e890527
+    if (setenv("LC_CTYPE", newloc, 1)) {
e890527
+        fprintf(stderr,
e890527
+                "Error setting LC_CTYPE, skipping C locale coercion\n");
e890527
+        return;
e890527
+    }
28f0c0c
+    if (_legacy_locale_warnings_enabled()) {
28f0c0c
+        fprintf(stderr, _C_LOCALE_COERCION_WARNING, newloc);
3b36b49
+    }
3b36b49
+
3b36b49
+    /* Reconfigure with the overridden environment variables */
3b36b49
+    setlocale(LC_ALL, "");
3b36b49
+}
8fbcd4d
+#endif
8fbcd4d
+
28f0c0c
+
8fbcd4d
+void
8fbcd4d
+_Py_CoerceLegacyLocale(void)
8fbcd4d
+{
8fbcd4d
+#ifdef PY_COERCE_C_LOCALE
8fbcd4d
+    /* We ignore the Python -E and -I flags here, as the CLI needs to sort out
3b36b49
+     * the locale settings *before* we try to do anything with the command
3b36b49
+     * line arguments. For cross-platform debugging purposes, we also need
3b36b49
+     * to give end users a way to force even scripts that are otherwise
3b36b49
+     * isolated from their environment to use the legacy ASCII-centric C
3b36b49
+     * locale.
28f0c0c
+     *
28f0c0c
+     * Ignoring -E and -I is safe from a security perspective, as we only use
28f0c0c
+     * the setting to turn *off* the implicit locale coercion, and anyone with
28f0c0c
+     * access to the process environment already has the ability to set
28f0c0c
+     * `LC_ALL=C` to override the C level locale settings anyway.
28f0c0c
+     */
28f0c0c
+    const char *coerce_c_locale = getenv("PYTHONCOERCECLOCALE");
28f0c0c
+    if (coerce_c_locale == NULL || strncmp(coerce_c_locale, "0", 2) != 0) {
28f0c0c
+        /* PYTHONCOERCECLOCALE is not set, or is set to something other than "0" */
e890527
+        const char *locale_override = getenv("LC_ALL");
e890527
+        if (locale_override == NULL || *locale_override == '\0') {
e890527
+            /* LC_ALL is also not set (or is set to an empty string) */
e890527
+            const _LocaleCoercionTarget *target = NULL;
e890527
+            for (target = _TARGET_LOCALES; target->locale_name; target++) {
e890527
+                const char *new_locale = setlocale(LC_CTYPE,
e890527
+                                                   target->locale_name);
e890527
+                if (new_locale != NULL) {
8ff3972
+#if !defined(__APPLE__) && defined(HAVE_LANGINFO_H) && defined(CODESET)
8ff3972
+                    /* Also ensure that nl_langinfo works in this locale */
8ff3972
+                    char *codeset = nl_langinfo(CODESET);
8ff3972
+                    if (!codeset || *codeset == '\0') {
8ff3972
+                        /* CODESET is not set or empty, so skip coercion */
8ff3972
+                        new_locale = NULL;
8ff3972
+                        setlocale(LC_CTYPE, "");
8ff3972
+                        continue;
8ff3972
+                    }
8ff3972
+#endif
e890527
+                    /* Successfully configured locale, so make it the default */
e890527
+                    _coerce_default_locale_settings(target);
e890527
+                    return;
e890527
+                }
3b36b49
+            }
3b36b49
+        }
3b36b49
+    }
3b36b49
+    /* No C locale warning here, as Py_Initialize will emit one later */
3b36b49
+#endif
8fbcd4d
+}
3b36b49
+
3b36b49
+
3b36b49
 void
3b36b49
 _Py_InitializeEx_Private(int install_sigs, int install_importlib)
3b36b49
 {
8ff3972
@@ -315,11 +493,19 @@ _Py_InitializeEx_Private(int install_sigs, int install_importlib)
3b36b49
     initialized = 1;
3b36b49
     _Py_Finalizing = NULL;
3b36b49
 
3b36b49
-#ifdef HAVE_SETLOCALE
3b36b49
+#ifdef __ANDROID__
3b36b49
+    /* Passing "" to setlocale() on Android requests the C locale rather
3b36b49
+     * than checking environment variables, so request C.UTF-8 explicitly
3b36b49
+     */
3b36b49
+    setlocale(LC_CTYPE, "C.UTF-8");
3b36b49
+#else
28f0c0c
+#ifndef MS_WINDOWS
3b36b49
     /* Set up the LC_CTYPE locale, so we can obtain
3b36b49
        the locale's charset without having to switch
3b36b49
        locales. */
3b36b49
     setlocale(LC_CTYPE, "");
28f0c0c
+    _emit_stderr_warning_for_legacy_locale();
3b36b49
+#endif
3b36b49
 #endif
3b36b49
 
3b36b49
     if ((p = Py_GETENV("PYTHONDEBUG")) && *p != '\0')
f15b897
@@ -1251,12 +1437,8 @@ initstdio(void)
8fbcd4d
             }
8fbcd4d
         }
8fbcd4d
         if (!errors && !(pythonioencoding && *pythonioencoding)) {
8fbcd4d
-            /* When the LC_CTYPE locale is the POSIX locale ("C locale"),
8fbcd4d
-               stdin and stdout use the surrogateescape error handler by
8fbcd4d
-               default, instead of the strict error handler. */
8fbcd4d
-            char *loc = setlocale(LC_CTYPE, NULL);
8fbcd4d
-            if (loc != NULL && strcmp(loc, "C") == 0)
8fbcd4d
-                errors = "surrogateescape";
8fbcd4d
+            /* Choose the default error handler based on the current locale */
8fbcd4d
+            errors = get_default_standard_stream_error_handler();
8fbcd4d
         }
8fbcd4d
     }
8fbcd4d
 
3b36b49
diff --git a/configure b/configure
28f0c0c
index 2915246..39e5a27 100755
3b36b49
--- a/configure
3b36b49
+++ b/configure
3b36b49
@@ -834,6 +834,8 @@ with_thread
3b36b49
 enable_ipv6
3b36b49
 with_doc_strings
3b36b49
 with_pymalloc
3b36b49
+with_c_locale_coercion
3b36b49
+with_c_locale_warning
3b36b49
 with_valgrind
3b36b49
 with_dtrace
3b36b49
 with_fpectl
28f0c0c
@@ -1527,6 +1529,12 @@ Optional Packages:
3b36b49
                           deprecated; use --with(out)-threads
3b36b49
   --with(out)-doc-strings disable/enable documentation strings
3b36b49
   --with(out)-pymalloc    disable/enable specialized mallocs
3b36b49
+  --with(out)-c-locale-coercion
3b36b49
+                          disable/enable C locale coercion to a UTF-8 based
3b36b49
+                          locale
3b36b49
+  --with(out)-c-locale-warning
3b36b49
+                          disable/enable locale compatibility warning in the C
3b36b49
+                          locale
3b36b49
   --with-valgrind         Enable Valgrind support
3b36b49
   --with(out)-dtrace      disable/enable DTrace support
3b36b49
   --with-fpectl           enable SIGFPE catching
28f0c0c
@@ -11010,6 +11018,52 @@ fi
3b36b49
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_pymalloc" >&5
3b36b49
 $as_echo "$with_pymalloc" >&6; }
3b36b49
 
3b36b49
+# Check for --with-c-locale-coercion
3b36b49
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-c-locale-coercion" >&5
3b36b49
+$as_echo_n "checking for --with-c-locale-coercion... " >&6; }
3b36b49
+
3b36b49
+# Check whether --with-c-locale-coercion was given.
3b36b49
+if test "${with_c_locale_coercion+set}" = set; then :
3b36b49
+  withval=$with_c_locale_coercion;
3b36b49
+fi
3b36b49
+
3b36b49
+
3b36b49
+if test -z "$with_c_locale_coercion"
3b36b49
+then
3b36b49
+    with_c_locale_coercion="yes"
3b36b49
+fi
3b36b49
+if test "$with_c_locale_coercion" != "no"
3b36b49
+then
3b36b49
+
3b36b49
+$as_echo "#define PY_COERCE_C_LOCALE 1" >>confdefs.h
3b36b49
+
3b36b49
+fi
3b36b49
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_c_locale_coercion" >&5
3b36b49
+$as_echo "$with_c_locale_coercion" >&6; }
3b36b49
+
3b36b49
+# Check for --with-c-locale-warning
3b36b49
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-c-locale-warning" >&5
3b36b49
+$as_echo_n "checking for --with-c-locale-warning... " >&6; }
3b36b49
+
3b36b49
+# Check whether --with-c-locale-warning was given.
3b36b49
+if test "${with_c_locale_warning+set}" = set; then :
3b36b49
+  withval=$with_c_locale_warning;
3b36b49
+fi
3b36b49
+
3b36b49
+
3b36b49
+if test -z "$with_c_locale_warning"
3b36b49
+then
3b36b49
+    with_c_locale_warning="yes"
3b36b49
+fi
3b36b49
+if test "$with_c_locale_warning" != "no"
3b36b49
+then
3b36b49
+
3b36b49
+$as_echo "#define PY_WARN_ON_C_LOCALE 1" >>confdefs.h
3b36b49
+
3b36b49
+fi
3b36b49
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_c_locale_warning" >&5
3b36b49
+$as_echo "$with_c_locale_warning" >&6; }
3b36b49
+
3b36b49
 # Check for Valgrind support
3b36b49
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-valgrind" >&5
3b36b49
 $as_echo_n "checking for --with-valgrind... " >&6; }
3b36b49
diff --git a/configure.ac b/configure.ac
28f0c0c
index 67dfba3..b9c9f04 100644
3b36b49
--- a/configure.ac
3b36b49
+++ b/configure.ac
28f0c0c
@@ -3279,6 +3279,40 @@ then
3b36b49
 fi
3b36b49
 AC_MSG_RESULT($with_pymalloc)
3b36b49
 
3b36b49
+# Check for --with-c-locale-coercion
3b36b49
+AC_MSG_CHECKING(for --with-c-locale-coercion)
3b36b49
+AC_ARG_WITH(c-locale-coercion,
3b36b49
+            AS_HELP_STRING([--with(out)-c-locale-coercion],
3b36b49
+              [disable/enable C locale coercion to a UTF-8 based locale]))
3b36b49
+
3b36b49
+if test -z "$with_c_locale_coercion"
3b36b49
+then
3b36b49
+    with_c_locale_coercion="yes"
3b36b49
+fi
3b36b49
+if test "$with_c_locale_coercion" != "no"
3b36b49
+then
3b36b49
+    AC_DEFINE(PY_COERCE_C_LOCALE, 1,
3b36b49
+      [Define if you want to coerce the C locale to a UTF-8 based locale])
3b36b49
+fi
3b36b49
+AC_MSG_RESULT($with_c_locale_coercion)
3b36b49
+
3b36b49
+# Check for --with-c-locale-warning
3b36b49
+AC_MSG_CHECKING(for --with-c-locale-warning)
3b36b49
+AC_ARG_WITH(c-locale-warning,
3b36b49
+            AS_HELP_STRING([--with(out)-c-locale-warning],
3b36b49
+              [disable/enable locale compatibility warning in the C locale]))
3b36b49
+
3b36b49
+if test -z "$with_c_locale_warning"
3b36b49
+then
3b36b49
+    with_c_locale_warning="yes"
3b36b49
+fi
3b36b49
+if test "$with_c_locale_warning" != "no"
3b36b49
+then
3b36b49
+    AC_DEFINE(PY_WARN_ON_C_LOCALE, 1,
3b36b49
+      [Define to emit a locale compatibility warning in the C locale])
3b36b49
+fi
3b36b49
+AC_MSG_RESULT($with_c_locale_warning)
3b36b49
+
3b36b49
 # Check for Valgrind support
3b36b49
 AC_MSG_CHECKING([for --with-valgrind])
3b36b49
 AC_ARG_WITH([valgrind],
3b36b49
diff --git a/pyconfig.h.in b/pyconfig.h.in
28f0c0c
index b10c57f..0a6f3e2 100644
3b36b49
--- a/pyconfig.h.in
3b36b49
+++ b/pyconfig.h.in
28f0c0c
@@ -1244,9 +1244,15 @@
3b36b49
 /* Define as the preferred size in bits of long digits */
3b36b49
 #undef PYLONG_BITS_IN_DIGIT
3b36b49
 
3b36b49
+/* Define if you want to coerce the C locale to a UTF-8 based locale */
3b36b49
+#undef PY_COERCE_C_LOCALE
3b36b49
+
3b36b49
 /* Define to printf format modifier for Py_ssize_t */
3b36b49
 #undef PY_FORMAT_SIZE_T
3b36b49
 
3b36b49
+/* Define to emit a locale compatibility warning in the C locale */
3b36b49
+#undef PY_WARN_ON_C_LOCALE
3b36b49
+
3b36b49
 /* Define if you want to build an interpreter with many run-time checks. */
3b36b49
 #undef Py_DEBUG
3b36b49