From: Antoine Pitrou Date: Sun, 22 Feb 2009 18:20:46 +0000 (+0000) Subject: Revert debugging statements, culprit is possibly test_distutils (see #5316) X-Git-Tag: v2.7a1~1967 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b03f532fe539fe7ce9bc9e26dbea34608da19291;p=python Revert debugging statements, culprit is possibly test_distutils (see #5316) --- diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 1261e588db..08d0c629d1 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -99,10 +99,9 @@ class HelperFunctionsTests(unittest.TestCase): def test_s_option(self): usersite = site.USER_SITE self.assert_(usersite in sys.path) - print usersite, sys.path rc = subprocess.call([sys.executable, '-c', - 'import sys; print sys.path; sys.exit(%r in sys.path)' % usersite]) + 'import sys; sys.exit(%r in sys.path)' % usersite]) self.assertEqual(rc, 1) rc = subprocess.call([sys.executable, '-s', '-c',