From: Fred Drake Date: Thu, 25 Jul 2002 20:13:03 +0000 (+0000) Subject: Add an XXX comment and a pointer to a full bug report. X-Git-Tag: v2.3c1~4868 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e80c0d35808000a783f8cc667c8841f7aa0b1ad6;p=python Add an XXX comment and a pointer to a full bug report. --- diff --git a/Lib/site.py b/Lib/site.py index 23c12a09ee..a6ffb59d83 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -92,6 +92,8 @@ del dir, dircase, L # Append ./build/lib. 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 s = "build/lib.%s-%.3s" % (get_platform(), sys.version)