This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 3.29 site is confusing re site-packages on Windows
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, georg.brandl, kjohnson, rhettinger
Priority: normal Keywords:

Created on 2005-04-26 12:26 by kjohnson, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
libsite-diff georg.brandl, 2005-06-03 18:24
Messages (4)
msg25133 - (view) Author: Kent Johnson (kjohnson) * Date: 2005-04-26 12:26
Library Reference 3.29 site seems to say that
site-packages is only searched on Unix and Mac. The
relevant sentence is in the third paragraph: "For the
tail part, it uses the empty string (on Windows) or it
uses first lib/python2.4/site-packages and then
lib/site-python (on Unixand Macintosh)."

A clearer and more accurate wording would be "For the
tail part, it uses the empty string and lib/site-python
(on Windows) or it uses first
lib/python2.4/site-packages and then lib/site-python
(on Unixand Macintosh)."

The relevant code is line 187 in site.py.
msg25134 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-06-03 18:24
Logged In: YES 
user_id=1188172

Fix attached; okay to checkin?
msg25135 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2005-08-24 05:10
Logged In: YES 
user_id=80475

Before you check in doc changes, be sure to spellcheck and use:

    python -m texcheck libsite.tex
msg25136 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-08-24 07:32
Logged In: YES 
user_id=1188172

Okay, committed as Doc/lib/libsite.tex 1.28, 1.26.4.2.
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41904
2005-04-26 12:26:12kjohnsoncreate