[Python-checkins] r46891 - python/trunk/Lib/site.py

nick.coghlan python-checkins at python.org
Mon Jun 12 10:23:03 CEST 2006


Author: nick.coghlan
Date: Mon Jun 12 10:23:02 2006
New Revision: 46891

Modified:
   python/trunk/Lib/site.py
Log:
Fix site module docstring to match the code for Mac OSX, too

Modified: python/trunk/Lib/site.py
==============================================================================
--- python/trunk/Lib/site.py	(original)
+++ python/trunk/Lib/site.py	Mon Jun 12 10:23:02 2006
@@ -11,9 +11,10 @@
 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.


More information about the Python-checkins mailing list