summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-05-16 21:31:39 (GMT)
committerGitHub <noreply@github.com>2017-05-16 21:31:39 (GMT)
commit0d267041c40a3ab655676b885c0ba35ed9685848 (patch)
tree6825ef9b35a407233d8d92595011e6a0d5ff8213 /Doc/whatsnew
parent5e2016dce92d66e6e1fb25e6ce39031d8c7d5412 (diff)
downloadcpython-0d267041c40a3ab655676b885c0ba35ed9685848.zip
cpython-0d267041c40a3ab655676b885c0ba35ed9685848.tar.gz
cpython-0d267041c40a3ab655676b885c0ba35ed9685848.tar.bz2
bpo-29898: Fix incorrect env variable name (GH-1576)
It should read PYTHONLEGACYWINDOWSSTDIO as stated in section "Add legacy mode" in PEP 528. (cherry picked from commit 87fa8a780e9045a26c735f085c07bba4b2d0be60)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.6.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst
index a696af4..a701caf 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::