diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2006-06-12 08:19:37 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2006-06-12 08:19:37 (GMT) |
commit | 3fb55ca80e9edd3f87061d2ba7f82fbbe23ce674 (patch) | |
tree | fa81dd5d9442794496aa0adfdcbde86b400ad7c7 /Lib/site.py | |
parent | ee3ea5418e98c6c2cb036bfbccab8b029ab79f21 (diff) | |
download | cpython-3fb55ca80e9edd3f87061d2ba7f82fbbe23ce674.zip cpython-3fb55ca80e9edd3f87061d2ba7f82fbbe23ce674.tar.gz cpython-3fb55ca80e9edd3f87061d2ba7f82fbbe23ce674.tar.bz2 |
Fix site module docstring to match the code
Diffstat (limited to 'Lib/site.py')
-rw-r--r-- | Lib/site.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/site.py b/Lib/site.py index c44c393..a5c39f5 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<version>/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. |