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

nick.coghlan python-checkins at python.org
Mon Jun 12 10:19:38 CEST 2006


Author: nick.coghlan
Date: Mon Jun 12 10:19:37 2006
New Revision: 46890

Modified:
   python/trunk/Lib/site.py
Log:
Fix site module docstring to match the code

Modified: python/trunk/Lib/site.py
==============================================================================
--- python/trunk/Lib/site.py	(original)
+++ python/trunk/Lib/site.py	Mon Jun 12 10:19:37 2006
@@ -13,8 +13,8 @@
 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.
 


More information about the Python-checkins mailing list