]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
backport bug [ 1190204 ] 3.29 site is confusing re site-packages on Windows
authorGeorg Brandl <georg@python.org>
Wed, 24 Aug 2005 07:31:29 +0000 (07:31 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 24 Aug 2005 07:31:29 +0000 (07:31 +0000)
Doc/lib/libsite.tex
Misc/NEWS

index cfc17d1bc459b7fadd8a4b42ad97eff356e7be6d..43b8db2420d1e30260408ad050c09d3ca903901a 100644 (file)
@@ -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.
index 85da3470c882d10267e61752725370a95fd3ea77..55219f54d9d316e9c1d891dba48c9100ac9d37c0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -120,6 +120,8 @@ Build
 Documentation
 -------------
 
+- Bug #1190204: Clarify which directories are searched by site.py.
+
 - Bug #1193849: Clarify os.path.expanduser() documentation.
 
 - Bug #1243192: re.UNICODE and re.LOCALE affect \d, \D, \s and \S.