[Python-checkins] python/dist/src/Lib site.py,1.43,1.44

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Thu, 25 Jul 2002 13:13:06 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv14682

Modified Files:
	site.py 
Log Message:
Add an XXX comment and a pointer to a full bug report.


Index: site.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/site.py,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** site.py	1 Jun 2002 14:18:46 -0000	1.43
--- site.py	25 Jul 2002 20:13:03 -0000	1.44
***************
*** 93,96 ****
--- 93,98 ----
  # Append ./build/lib.<platform> in case we're running in the build dir
  # (especially for Guido :-)
+ # XXX This should not be part of site.py, since it is needed even when
+ # using the -S option for Python.  See http://www.python.org/sf/586680
  if os.name == "posix" and os.path.basename(sys.path[-1]) == "Modules":
      from distutils.util import get_platform