summaryrefslogtreecommitdiffstats
path: root/Lib/site.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2006-06-12 08:23:02 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2006-06-12 08:23:02 (GMT)
commitf2b16f3eb4ae0bdcf267c49a6c46d230db2fbe23 (patch)
tree297c839f0c3d7e85e3d0aaad6dd1b34059f16e44 /Lib/site.py
parent3fb55ca80e9edd3f87061d2ba7f82fbbe23ce674 (diff)
downloadcpython-f2b16f3eb4ae0bdcf267c49a6c46d230db2fbe23.zip
cpython-f2b16f3eb4ae0bdcf267c49a6c46d230db2fbe23.tar.gz
cpython-f2b16f3eb4ae0bdcf267c49a6c46d230db2fbe23.tar.bz2
Fix site module docstring to match the code for Mac OSX, too
Diffstat (limited to 'Lib/site.py')
-rw-r--r--Lib/site.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/site.py b/Lib/site.py
index a5c39f5..de8fc48 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -11,9 +11,10 @@ import, this is no longer necessary (but code that does it still
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 tries each of the
+Unix (including Mac OSX), 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 (such as 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.