[Python-checkins] r76065 - in sandbox/trunk/2to3/lib2to3/tests: test_all_fixers.py test_parser.py

benjamin.peterson python-checkins at python.org
Mon Nov 2 19:21:25 CET 2009


Author: benjamin.peterson
Date: Mon Nov  2 19:21:25 2009
New Revision: 76065

Log:
don't print stuff in tests

Modified:
   sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py
   sandbox/trunk/2to3/lib2to3/tests/test_parser.py

Modified: sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py	(original)
+++ sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py	Mon Nov  2 19:21:25 2009
@@ -19,5 +19,4 @@
 
     def test_all_project_files(self):
         for filepath in support.all_project_files():
-            print "Fixing %s..." % filepath
             self.refactor.refactor_file(filepath)

Modified: sandbox/trunk/2to3/lib2to3/tests/test_parser.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/tests/test_parser.py	(original)
+++ sandbox/trunk/2to3/lib2to3/tests/test_parser.py	Mon Nov  2 19:21:25 2009
@@ -147,7 +147,6 @@
 
     def test_all_project_files(self):
         for filepath in support.all_project_files():
-            print "Parsing %s..." % filepath
             with open(filepath, "rb") as fp:
                 encoding = tokenize.detect_encoding(fp.readline)[0]
                 fp.seek(0)


More information about the Python-checkins mailing list