summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-04-27 19:20:00 (GMT)
committerGeorg Brandl <georg@python.org>2007-04-27 19:20:00 (GMT)
commit58ef8cd29c457ef40a333c30f81cdc519ac43a53 (patch)
tree796cdd4ce89b0c9a10ec38210d98b3f01e2833fe /Doc
parent1b59d10ce2a8eeb50878bc5a292bcc2257c40c47 (diff)
downloadcpython-58ef8cd29c457ef40a333c30f81cdc519ac43a53.zip
cpython-58ef8cd29c457ef40a333c30f81cdc519ac43a53.tar.gz
cpython-58ef8cd29c457ef40a333c30f81cdc519ac43a53.tar.bz2
Version fix (bug #1708710)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tut/tut.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index 3e047f3..e4e8a1a 100644
--- a/Doc/tut/tut.tex
+++ b/Doc/tut/tut.tex
@@ -184,12 +184,12 @@ your local 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:\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 @@ operating system:
>>> 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 @@ applications include caching objects that are expensive to create:
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}