[Python-checkins] r79924 - python/trunk/Doc/tutorial/interpreter.rst

georg.brandl python-checkins at python.org
Sat Apr 10 13:16:59 CEST 2010


Author: georg.brandl
Date: Sat Apr 10 13:16:59 2010
New Revision: 79924

Log:
#8346: update version.

Modified:
   python/trunk/Doc/tutorial/interpreter.rst

Modified: python/trunk/Doc/tutorial/interpreter.rst
==============================================================================
--- python/trunk/Doc/tutorial/interpreter.rst	(original)
+++ python/trunk/Doc/tutorial/interpreter.rst	Sat Apr 10 13:16:59 2010
@@ -22,11 +22,11 @@
 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 @@
 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.
    >>>
 


More information about the Python-checkins mailing list