diff options
author | Fred Drake <fdrake@acm.org> | 2000-09-14 18:25:41 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-09-14 18:25:41 (GMT) |
commit | 1fe3b82371c0d53b829a98ce497f06782a616315 (patch) | |
tree | 39226aaa5e52f0b33020334f34b22d2a6cf82c3f /Doc/lib/libsite.tex | |
parent | 933f0c38ef5e1cbc3f9cfb2f8e5870b4731abdc0 (diff) | |
download | cpython-1fe3b82371c0d53b829a98ce497f06782a616315.zip cpython-1fe3b82371c0d53b829a98ce497f06782a616315.tar.gz cpython-1fe3b82371c0d53b829a98ce497f06782a616315.tar.bz2 |
Avoid reference to specific versions of Python where possible.
This partially addresses SourceForge bug #114318.
Diffstat (limited to 'Doc/lib/libsite.tex')
-rw-r--r-- | Doc/lib/libsite.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libsite.tex b/Doc/lib/libsite.tex index 20574ab..2814fe3 100644 --- a/Doc/lib/libsite.tex +++ b/Doc/lib/libsite.tex @@ -39,10 +39,10 @@ refers to a directory (rather than a file). No item is added to For example, suppose \code{sys.prefix} and \code{sys.exec_prefix} are set to \file{/usr/local}. The Python \version\ library is then -installed in \file{/usr/local/lib/python1.5} (note that only the first -three characters of \code{sys.version} are used to form the path -name). Suppose this has a subdirectory -\file{/usr/local/lib/python1.5/site-packages} with three +installed in \file{/usr/local/lib/python\var{version}} (where +\var{version} is the first three characters of \code{sys.version}). +Suppose this has a subdirectory +\file{/usr/local/lib/python\var{version}/site-packages} with three subsubdirectories, \file{foo}, \file{bar} and \file{spam}, and two path configuration files, \file{foo.pth} and \file{bar.pth}. Assume \file{foo.pth} contains the following: |