diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-05-16 12:36:45 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-16 12:36:45 +0300 |
commit | 87fa8a780e9045a26c735f085c07bba4b2d0be60 (patch) | |
tree | 23b4bb58df7610d31541ebca1f5e84d41b7f5a29 /Doc/whatsnew/3.6.rst | |
parent | Remove unused variable in test_urllibnet. (#1598) (diff) | |
download | cpython-87fa8a780e9045a26c735f085c07bba4b2d0be60.tar.gz cpython-87fa8a780e9045a26c735f085c07bba4b2d0be60.tar.bz2 cpython-87fa8a780e9045a26c735f085c07bba4b2d0be60.zip |
bpo-29898: Fix incorrect env variable name (GH-1576)
It should read PYTHONLEGACYWINDOWSSTDIO as stated
in section "Add legacy mode" in PEP 528.
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index 163794da965..60469cd1d36 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -534,7 +534,7 @@ provide correctly read str objects to Python code. ``sys.stdin``, This change only applies when using an interactive console, and not when redirecting files or pipes. To revert to the previous behaviour for interactive -console use, set :envvar:`PYTHONLEGACYWINDOWSIOENCODING`. +console use, set :envvar:`PYTHONLEGACYWINDOWSSTDIO`. .. seealso:: |