[Python-checkins] r55002 - python/trunk/Doc/tut/tut.tex

georg.brandl python-checkins at python.org
Fri Apr 27 21:20:01 CEST 2007


Author: georg.brandl
Date: Fri Apr 27 21:20:00 2007
New Revision: 55002

Modified:
   python/trunk/Doc/tut/tut.tex
Log:
Version fix (bug #1708710)


Modified: python/trunk/Doc/tut/tut.tex
==============================================================================
--- python/trunk/Doc/tut/tut.tex	(original)
+++ python/trunk/Doc/tut/tut.tex	Fri Apr 27 21:20:00 2007
@@ -184,12 +184,12 @@
 \file{/usr/local/python} is a popular alternative location.)
 
 On Windows machines, the Python installation is usually placed in
-\file{C:\e Python24}, though you can change this when you're running
+\file{C:\e Python26}, 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:
 
 \begin{verbatim}
-set path=%path%;C:\python24
+set path=%path%;C:\python26
 \end{verbatim}
 
 
@@ -4654,7 +4654,7 @@
 >>> os.system('time 0:02')
 0
 >>> os.getcwd()      # Return the current working directory
-'C:\\Python24'
+'C:\\Python26'
 >>> os.chdir('/server/accesslogs')
 \end{verbatim}
 
@@ -5254,7 +5254,7 @@
     Traceback (most recent call last):
       File "<pyshell#108>", line 1, in -toplevel-
         d['primary']                # entry was automatically removed
-      File "C:/PY24/lib/weakref.py", line 46, in __getitem__
+      File "C:/python26/lib/weakref.py", line 46, in __getitem__
         o = self.data[key]()
     KeyError: 'primary'
 \end{verbatim}


More information about the Python-checkins mailing list