changeset: 100901:56eca1c08738 branch: 3.5 parent: 100898:a4e3ba22fb6d user: Serhiy Storchaka date: Sun Apr 10 14:34:13 2016 +0300 files: Lib/test/test_sys.py Misc/NEWS Python/pylifecycle.c description: Issue #25339: PYTHONIOENCODING now has priority over locale in setting the error handler for stdin and stdout. diff -r a4e3ba22fb6d -r 56eca1c08738 Lib/test/test_sys.py --- a/Lib/test/test_sys.py Sun Apr 10 08:48:51 2016 +0000 +++ b/Lib/test/test_sys.py Sun Apr 10 14:34:13 2016 +0300 @@ -691,8 +691,10 @@ args = [sys.executable, "-c", code] if isolated: args.append("-I") - elif encoding: + if encoding is not None: env['PYTHONIOENCODING'] = encoding + else: + env.pop('PYTHONIOENCODING', None) p = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, @@ -709,14 +711,31 @@ 'stderr: backslashreplace\n') # replace the default error handler - out = self.c_locale_get_error_handler(encoding=':strict') + out = self.c_locale_get_error_handler(encoding=':ignore') + self.assertEqual(out, + 'stdin: ignore\n' + 'stdout: ignore\n' + 'stderr: backslashreplace\n') + + # force the encoding + out = self.c_locale_get_error_handler(encoding='iso8859-1') + self.assertEqual(out, + 'stdin: strict\n' + 'stdout: strict\n' + 'stderr: backslashreplace\n') + out = self.c_locale_get_error_handler(encoding='iso8859-1:') self.assertEqual(out, 'stdin: strict\n' 'stdout: strict\n' 'stderr: backslashreplace\n') - # force the encoding - out = self.c_locale_get_error_handler(encoding='iso8859-1') + # have no any effect + out = self.c_locale_get_error_handler(encoding=':') + self.assertEqual(out, + 'stdin: surrogateescape\n' + 'stdout: surrogateescape\n' + 'stderr: backslashreplace\n') + out = self.c_locale_get_error_handler(encoding='') self.assertEqual(out, 'stdin: surrogateescape\n' 'stdout: surrogateescape\n' diff -r a4e3ba22fb6d -r 56eca1c08738 Misc/NEWS --- a/Misc/NEWS Sun Apr 10 08:48:51 2016 +0000 +++ b/Misc/NEWS Sun Apr 10 14:34:13 2016 +0300 @@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #25339: PYTHONIOENCODING now has priority over locale in setting the + error handler for stdin and stdout. + - Issue #26494: Fixed crash on iterating exhausting iterators. Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding diff -r a4e3ba22fb6d -r 56eca1c08738 Python/pylifecycle.c --- a/Python/pylifecycle.c Sun Apr 10 08:48:51 2016 +0000 +++ b/Python/pylifecycle.c Sun Apr 10 14:34:13 2016 +0300 @@ -1135,15 +1135,6 @@ encoding = _Py_StandardStreamEncoding; errors = _Py_StandardStreamErrors; if (!encoding || !errors) { - if (!errors) { - /* When the LC_CTYPE locale is the POSIX locale ("C locale"), - stdin and stdout use the surrogateescape error handler by - default, instead of the strict error handler. */ - char *loc = setlocale(LC_CTYPE, NULL); - if (loc != NULL && strcmp(loc, "C") == 0) - errors = "surrogateescape"; - } - pythonioencoding = Py_GETENV("PYTHONIOENCODING"); if (pythonioencoding) { char *err; @@ -1156,7 +1147,7 @@ if (err) { *err = '\0'; err++; - if (*err && !_Py_StandardStreamErrors) { + if (*err && !errors) { errors = err; } } @@ -1164,6 +1155,14 @@ encoding = pythonioencoding; } } + if (!errors && !(pythonioencoding && *pythonioencoding)) { + /* When the LC_CTYPE locale is the POSIX locale ("C locale"), + stdin and stdout use the surrogateescape error handler by + default, instead of the strict error handler. */ + char *loc = setlocale(LC_CTYPE, NULL); + if (loc != NULL && strcmp(loc, "C") == 0) + errors = "surrogateescape"; + } } /* Set sys.stdin */