diff options
author | Georg Brandl <georg@python.org> | 2010-04-10 11:16:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-04-10 11:16:59 (GMT) |
commit | 9352f1c64ef8ab738f1f6b8d3483a3cff492d9b1 (patch) | |
tree | ee5efd1f6afc08dc6d84978895493fa2275e1ab1 /Doc/tutorial | |
parent | 90aae551b141b80a9010c7d1950751e74e419e45 (diff) | |
download | cpython-9352f1c64ef8ab738f1f6b8d3483a3cff492d9b1.zip cpython-9352f1c64ef8ab738f1f6b8d3483a3cff492d9b1.tar.gz cpython-9352f1c64ef8ab738f1f6b8d3483a3cff492d9b1.tar.bz2 |
#8346: update version.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/interpreter.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index 311b409..41442d3 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -22,11 +22,11 @@ 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:\\Python26`, though you can change this when you're running the +:file:`C:\\Python27`, 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 the command prompt in a DOS box:: - set path=%path%;C:\python26 + set path=%path%;C:\python27 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 @@ -102,7 +102,7 @@ prints a welcome message stating its version number and a copyright notice before printing the first prompt:: python - Python 2.6 (#1, Feb 28 2007, 00:02:06) + Python 2.7 (#1, Feb 28 2010, 00:02:06) Type "help", "copyright", "credits" or "license" for more information. >>> |