diff options
author | Georg Brandl <georg@python.org> | 2005-08-24 07:31:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-08-24 07:31:29 (GMT) |
commit | 42cd573c5a5bac9c5bfb8811bd7076febd4baffb (patch) | |
tree | e40e18f7eec30dcd7b53cc35f9ed505f7925d585 /Doc | |
parent | e591e046235de574b48b72bdce6f235bc1821a50 (diff) | |
download | cpython-42cd573c5a5bac9c5bfb8811bd7076febd4baffb.zip cpython-42cd573c5a5bac9c5bfb8811bd7076febd4baffb.tar.gz cpython-42cd573c5a5bac9c5bfb8811bd7076febd4baffb.tar.bz2 |
backport bug [ 1190204 ] 3.29 site is confusing re site-packages on Windows
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsite.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libsite.tex b/Doc/lib/libsite.tex index cfc17d1..43b8db2 100644 --- a/Doc/lib/libsite.tex +++ b/Doc/lib/libsite.tex @@ -17,8 +17,8 @@ It starts by constructing up to four directories from a head and a tail part. For the head part, it uses \code{sys.prefix} and \code{sys.exec_prefix}; empty heads are skipped. For the tail part, it uses the empty string (on Windows) or -it uses first \file{lib/python\shortversion/site-packages} and then -\file{lib/site-python} (on \UNIX and Macintosh). For each of the distinct +\file{lib/python\shortversion/site-packages} (on \UNIX{} and Macintosh) +and then \file{lib/site-python}. For each of the distinct head-tail combinations, it sees if it refers to an existing directory, and if so, adds it to \code{sys.path} and also inspects the newly added path for configuration files. |