[Python-checkins] r61988 - python/trunk/Lib/lib2to3/tests/test_fixers.py

martin.v.loewis python-checkins at python.org
Fri Mar 28 06:25:36 CET 2008


Author: martin.v.loewis
Date: Fri Mar 28 06:25:36 2008
New Revision: 61988

Modified:
   python/trunk/Lib/lib2to3/tests/test_fixers.py
Log:
Disable test that depends on #2412 being fixed.


Modified: python/trunk/Lib/lib2to3/tests/test_fixers.py
==============================================================================
--- python/trunk/Lib/lib2to3/tests/test_fixers.py	(original)
+++ python/trunk/Lib/lib2to3/tests/test_fixers.py	Fri Mar 28 06:25:36 2008
@@ -435,6 +435,8 @@
         #      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=' ')"


More information about the Python-checkins mailing list