[Python-checkins] r74359 - sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.py

benjamin.peterson python-checkins at python.org
Thu Aug 13 00:23:13 CEST 2009


Author: benjamin.peterson
Date: Thu Aug 13 00:23:13 2009
New Revision: 74359

Log:
don't pass the deprecated print_function option

Modified:
   sandbox/trunk/2to3/lib2to3/tests/test_all_fixers.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	Thu Aug 13 00:23:13 2009
@@ -15,8 +15,7 @@
 
 class Test_all(support.TestCase):
     def setUp(self):
-        options = {"print_function" : False}
-        self.refactor = support.get_refactorer(options=options)
+        self.refactor = support.get_refactorer()
 
     def test_all_project_files(self):
         for filepath in support.all_project_files():


More information about the Python-checkins mailing list