From: Nick Coghlan Date: Mon, 12 Jun 2006 08:19:37 +0000 (+0000) Subject: Fix site module docstring to match the code X-Git-Tag: v2.5b1~103 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3fb55ca80e9edd3f87061d2ba7f82fbbe23ce674;p=thirdparty%2FPython%2Fcpython.git Fix site module docstring to match the code --- diff --git a/Lib/site.py b/Lib/site.py index c44c3937ecf7..a5c39f508c44 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -13,8 +13,8 @@ works). This will append site-specific paths to the module search path. On Unix, it starts with sys.prefix and sys.exec_prefix (if different) and appends lib/python/site-packages as well as lib/site-python. -On other platforms (mainly Mac and Windows), it uses just sys.prefix -(and sys.exec_prefix, if different, but this is unlikely). The +On other platforms (mainly Mac and Windows), it tries each of the +prefixes directly, as well as with lib/site-packages appended. The resulting directories, if they exist, are appended to sys.path, and also inspected for path configuration files.