]> granicus.if.org Git - python/commitdiff
bpo-29898: Fix incorrect env variable name (GH-1576)
authorBerker Peksag <berker.peksag@gmail.com>
Tue, 16 May 2017 09:36:45 +0000 (12:36 +0300)
committerGitHub <noreply@github.com>
Tue, 16 May 2017 09:36:45 +0000 (12:36 +0300)
It should read PYTHONLEGACYWINDOWSSTDIO as stated
in section "Add legacy mode" in PEP 528.

Doc/using/cmdline.rst
Doc/whatsnew/3.6.rst

index 08dc311d837be963642d154c3d3d28bdafc785f7..40a06b9adc06ef165badce57912e1b27261eac33 100644 (file)
@@ -571,7 +571,7 @@ conflict.
 
    .. versionchanged:: 3.6
       On Windows, the encoding specified by this variable is ignored for interactive
-      console buffers unless :envvar:`PYTHONLEGACYWINDOWSIOENCODING` is also specified.
+      console buffers unless :envvar:`PYTHONLEGACYWINDOWSSTDIO` is also specified.
       Files and pipes redirected through the standard streams are not affected.
 
 .. envvar:: PYTHONNOUSERSITE
@@ -700,7 +700,7 @@ conflict.
    .. versionadded:: 3.6
       See :pep:`529` for more details.
 
-.. envvar:: PYTHONLEGACYWINDOWSIOENCODING
+.. envvar:: PYTHONLEGACYWINDOWSSTDIO
 
    If set to a non-empty string, does not use the new console reader and
    writer. This means that Unicode characters will be encoded according to
index 163794da965ec2da4b8087d5413aee0097bc9421..60469cd1d3651979a22e4474f75270e4effa81dd 100644 (file)
@@ -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::