summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_site.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-02-22 18:20:46 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-02-22 18:20:46 (GMT)
commitb03f532fe539fe7ce9bc9e26dbea34608da19291 (patch)
tree9eb03f6bc5c121a4f5ee73ddb708c0c7416ecb1d /Lib/test/test_site.py
parent13d1690ecdb4f7c7c54c7d961158d5ea8a1d3ecf (diff)
downloadcpython-b03f532fe539fe7ce9bc9e26dbea34608da19291.zip
cpython-b03f532fe539fe7ce9bc9e26dbea34608da19291.tar.gz
cpython-b03f532fe539fe7ce9bc9e26dbea34608da19291.tar.bz2
Revert debugging statements, culprit is possibly test_distutils (see #5316)
Diffstat (limited to 'Lib/test/test_site.py')
-rw-r--r--Lib/test/test_site.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py
index 1261e58..08d0c62 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',