]> granicus.if.org Git - python/commitdiff
test_subprocess doesn't need to C locale to test os.environb
authorVictor Stinner <victor.stinner@haypocalc.com>
Thu, 14 Oct 2010 10:43:31 +0000 (10:43 +0000)
committerVictor Stinner <victor.stinner@haypocalc.com>
Thu, 14 Oct 2010 10:43:31 +0000 (10:43 +0000)
Improve also the comment to explain why C locale is needed to test os.environ.

Lib/test/test_subprocess.py

index d7a157b7e568e5cbef88523b6e1299d7f72c0543..c21de196d101449430ccbae1bbf6440b3744518b 100644 (file)
@@ -885,7 +885,9 @@ class POSIXProcessTestCase(BaseTestCase):
             script = "import os; print(ascii(os.getenv(%s)))" % repr(key)
             env = os.environ.copy()
             env[key] = value
-            # Use C locale to get ascii for the locale encoding
+            # Use C locale to get ascii for the locale encoding to force
+            # surrogate-escaping of \xFF in the child process; otherwise it can
+            # be decoded as-is if the default locale is latin-1.
             env['LC_ALL'] = 'C'
             stdout = subprocess.check_output(
                 [sys.executable, "-c", script],
@@ -899,8 +901,6 @@ class POSIXProcessTestCase(BaseTestCase):
             script = "import os; print(ascii(os.getenvb(%s)))" % repr(key)
             env = os.environ.copy()
             env[key] = value
-            # Use C locale to get ascii for the locale encoding
-            env['LC_ALL'] = 'C'
             stdout = subprocess.check_output(
                 [sys.executable, "-c", script],
                 env=env)