summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-03-28 05:25:36 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-03-28 05:25:36 (GMT)
commitfac4f095c16366fac1cdad18ef23024021511e56 (patch)
tree9bd90f68119311bc946df8f47e964820e749c716 /Lib/lib2to3
parentd183bdd6fb77ae562714c655f0689beacdc00da1 (diff)
downloadcpython-fac4f095c16366fac1cdad18ef23024021511e56.zip
cpython-fac4f095c16366fac1cdad18ef23024021511e56.tar.gz
cpython-fac4f095c16366fac1cdad18ef23024021511e56.tar.bz2
Disable test that depends on #2412 being fixed.
Diffstat (limited to 'Lib/lib2to3')
-rwxr-xr-xLib/lib2to3/tests/test_fixers.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py
index e89ef4d..585d628 100755
--- a/Lib/lib2to3/tests/test_fixers.py
+++ b/Lib/lib2to3/tests/test_fixers.py
@@ -435,6 +435,8 @@ class Test_print(FixerTestCase):
# is fixed so it won't crash when it sees print(x=y).
# When #2412 is fixed, the try/except block can be taken
# out and the tests can be run like normal.
+ # MvL: disable entirely for now, so that it doesn't print to stdout
+ return
try:
s = "from __future__ import print_function\n"\
"print('Hai!', end=' ')"