Skip to content

Commit 881ddff

Browse files
christopheNanmiss-islington
authored andcommitted
[3.7]Documentation minor update related to 3.6 - 3.7 migration (pythonGH-9501)
Change version from 3.6 to 3.7 in the documentation when it addresses newcomers. original request from python/python-docs-fr#273
1 parent 7a26222 commit 881ddff

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Doc/tutorial/interpreter.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ Python guru or system administrator. (E.g., :file:`/usr/local/python` is a
2424
popular alternative location.)
2525

2626
On Windows machines, the Python installation is usually placed in
27-
:file:`C:\\Python36`, though you can change this when you're running the
27+
:file:`C:\\Python37`, though you can change this when you're running the
2828
installer. To add this directory to your path, you can type the following
2929
command into the command prompt in a DOS box::
3030

31-
set path=%path%;C:\python36
31+
set path=%path%;C:\python37
3232

3333
Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on
3434
Windows) at the primary prompt causes the interpreter to exit with a zero exit

Doc/using/cmdline.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,13 +182,13 @@ Generic options
182182

183183
.. code-block:: none
184184
185-
Python 3.6.0b2+
185+
Python 3.7.0b2+
186186
187187
When given twice, print more information about the build, like:
188188

189189
.. code-block:: none
190190
191-
Python 3.6.0b2+ (3.6:84a3c5003510+, Oct 26 2016, 02:33:55)
191+
Python 3.7.0b2+ (3.7:0c076caaa8, Sep 22 2018, 12:04:24)
192192
[GCC 6.2.0 20161005]
193193
194194
.. versionadded:: 3.6

Doc/using/windows.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,13 +193,13 @@ of available options is shown below.
193193
For example, to silently install a default, system-wide Python installation,
194194
you could use the following command (from an elevated command prompt)::
195195

196-
python-3.6.0.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0
196+
python-3.7.0.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0
197197

198198
To allow users to easily install a personal copy of Python without the test
199199
suite, you could provide a shortcut with the following command. This will
200200
display a simplified initial page and disallow customization::
201201

202-
python-3.6.0.exe InstallAllUsers=0 Include_launcher=0 Include_test=0
202+
python-3.7.0.exe InstallAllUsers=0 Include_launcher=0 Include_test=0
203203
SimpleInstall=1 SimpleInstallDescription="Just for me, no test suite."
204204

205205
(Note that omitting the launcher also omits file associations, and is only
@@ -236,13 +236,13 @@ where a large number of installations are going to be performed it is very
236236
useful to have a locally cached copy.
237237

238238
Execute the following command from Command Prompt to download all possible
239-
required files. Remember to substitute ``python-3.6.0.exe`` for the actual
239+
required files. Remember to substitute ``python-3.7.0.exe`` for the actual
240240
name of your installer, and to create layouts in their own directories to
241241
avoid collisions between files with the same name.
242242

243243
::
244244

245-
python-3.6.0.exe /layout [optional target directory]
245+
python-3.7.0.exe /layout [optional target directory]
246246

247247
You may also specify the ``/quiet`` option to hide the progress display.
248248

@@ -349,7 +349,7 @@ To temporarily set environment variables, open Command Prompt and use the
349349

350350
.. code-block:: doscon
351351
352-
C:\>set PATH=C:\Program Files\Python 3.6;%PATH%
352+
C:\>set PATH=C:\Program Files\Python 3.7;%PATH%
353353
C:\>set PYTHONPATH=%PYTHONPATH%;C:\My_python_lib
354354
C:\>python
355355
@@ -422,7 +422,7 @@ of your Python installation, delimited by a semicolon from other entries. An
422422
example variable could look like this (assuming the first two entries already
423423
existed)::
424424

425-
C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\Python 3.6
425+
C:\WINDOWS\system32;C:\WINDOWS;C:\Program Files\Python 3.7
426426

427427
.. _launcher:
428428

0 commit comments

Comments
 (0)