diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-18 00:18:21 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-18 00:18:21 (GMT) |
commit | 7143029d4360637aadbd7ddf386ea5c64fb83095 (patch) | |
tree | 618e8173c347bcfe20ea4e073d29e6c419fe702b /Doc/whatsnew | |
parent | 01adf06d375dcc5d2dab7a2d7dc487e0223977c9 (diff) | |
download | cpython-7143029d4360637aadbd7ddf386ea5c64fb83095.zip cpython-7143029d4360637aadbd7ddf386ea5c64fb83095.tar.gz cpython-7143029d4360637aadbd7ddf386ea5c64fb83095.tar.bz2 |
Issue #19977: When the ``LC_TYPE`` locale is the POSIX locale (``C`` locale),
:py:data:`sys.stdin` and :py:data:`sys.stdout` are now using the
``surrogateescape`` error handler, instead of the ``strict`` error handler.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 176160b..2c044ae 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -79,7 +79,10 @@ New built-in features: Implementation improvements: -* None yet. +* When the ``LC_TYPE`` locale is the POSIX locale (``C`` locale), + :py:data:`sys.stdin` and :py:data:`sys.stdout` are now using the + ``surrogateescape`` error handler, instead of the ``strict`` error handler + (:issue:`19977`). Significantly Improved Library Modules: |