diff options
author | Fred Drake <fdrake@acm.org> | 2004-08-10 21:20:10 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-08-10 21:20:10 (GMT) |
commit | 568671fc0fbcb70d5ba09c7211afff4f9d0d09e1 (patch) | |
tree | 752c668fce1ea0dfb6fb1a8281f2abd06f7c8040 /Doc | |
parent | ba100c98adf59baa695eb30e561e16ebe0fae4d6 (diff) | |
download | cpython-568671fc0fbcb70d5ba09c7211afff4f9d0d09e1.zip cpython-568671fc0fbcb70d5ba09c7211afff4f9d0d09e1.tar.gz cpython-568671fc0fbcb70d5ba09c7211afff4f9d0d09e1.tar.bz2 |
avoid version numbers in the text where possible
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/inst/inst.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/inst/inst.tex b/Doc/inst/inst.tex index 1abff82..bce6a14 100644 --- a/Doc/inst/inst.tex +++ b/Doc/inst/inst.tex @@ -267,12 +267,12 @@ being installed is pure Python or contains extensions (``non-pure''): \begin{tableiv}{l|l|l|c}{textrm}% {Platform}{Standard installation location}{Default value}{Notes} \lineiv{\UNIX{} (pure)} - {\filenq{\filevar{prefix}/lib/python2.4/site-packages}} - {\filenq{/usr/local/lib/python2.4/site-packages}} + {\filenq{\filevar{prefix}/lib/python\shortversion/site-packages}} + {\filenq{/usr/local/lib/python\shortversion/site-packages}} {(1)} \lineiv{\UNIX{} (non-pure)} - {\filenq{\filevar{exec-prefix}/lib/python2.4/site-packages}} - {\filenq{/usr/local/lib/python2.4/site-packages}} + {\filenq{\filevar{exec-prefix}/lib/python\shortversion/site-packages}} + {\filenq{/usr/local/lib/python\shortversion/site-packages}} {(1)} \lineiv{Windows} {\filenq{\filevar{prefix}}} @@ -308,7 +308,7 @@ installation uses for \filevar{prefix} and \filevar{exec-prefix} by running Python in interactive mode and typing a few simple commands. Under \UNIX, just type \code{python} at the shell prompt. Under Windows, choose \menuselection{Start \sub Programs \sub Python -2.4 \sub Python (command line)}. +\shortversion \sub Python (command line)}. Once the interpreter is started, you type Python code at the prompt. For example, on my Linux system, I type the three Python statements shown below, and get the output as shown, to find out my |