diff options
author | Utkarsh Gupta <guptautkarsh2102@gmail.com> | 2019-05-13 12:29:39 +0000 |
---|---|---|
committer | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-05-13 08:29:39 -0400 |
commit | 3e2afd78babe5bd270e7f3b9df8796eeabc79865 (patch) | |
tree | c27da9f8f326b12900053c6f979876bdc29b13e9 /Doc/tutorial | |
parent | 32d1458b2e2e00eeb29022179eeb04b83fb7f3c4 (diff) | |
download | cpython-git-3e2afd78babe5bd270e7f3b9df8796eeabc79865.tar.gz |
bpo-36008: Doc update for 3.8 migration (GH-12887)
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/interpreter.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index ab92af044e..dddfd850cd 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -24,11 +24,11 @@ Python guru or system administrator. (E.g., :file:`/usr/local/python` is a popular alternative location.) On Windows machines, the Python installation is usually placed in -:file:`C:\\Python36`, though you can change this when you're running the +:file:`C:\\Python38`, though you can change this when you're running the installer. To add this directory to your path, you can type the following command into :ref:`a command prompt window <faq-run-program-under-windows>`:: - set path=%path%;C:\python36 + set path=%path%;C:\python38 Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on Windows) at the primary prompt causes the interpreter to exit with a zero exit |