diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-02-25 10:55:29 -0500 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-02-25 10:55:29 -0500 |
commit | 77d73facdc0c0fc17ba3d6487aed0276d8b7079c (patch) | |
tree | 6e36ef8872157b4c74df68f899d93217ce093477 | |
parent | 6c0f707cd127fbb0c6a8ce67ce7e99b90a0aec35 (diff) | |
download | cpython-git-77d73facdc0c0fc17ba3d6487aed0276d8b7079c.tar.gz |
whatsnew: encoding is now optional in PYTHONIOENCODING (#18818)
-rw-r--r-- | Doc/whatsnew/3.4.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index ddc21fc960..109549e071 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -1578,6 +1578,11 @@ Other Improvements to use copies rather than symlinks even on systems where symlinks are the default. (Contributed by Vinay Sajip in :issue:`18807`.) +* The encoding name is now optional in the value set for the + :envvar:`PYTHONIOENCODING` environment variable. This makes it possible to + set just the error handler, without changing the default encoding. + (Contributed by Serhiy Storchaka in :issue:`18818`.) + Significant Optimizations ------------------------- |