[Python-checkins] r73180 - sandbox/trunk/2to3/lib2to3/tests/test_fixers.py

benjamin.peterson python-checkins at python.org
Wed Jun 3 20:18:05 CEST 2009


Author: benjamin.peterson
Date: Wed Jun  3 20:18:05 2009
New Revision: 73180

Log:
scrap __main__ section

Modified:
   sandbox/trunk/2to3/lib2to3/tests/test_fixers.py

Modified: sandbox/trunk/2to3/lib2to3/tests/test_fixers.py
==============================================================================
--- sandbox/trunk/2to3/lib2to3/tests/test_fixers.py	(original)
+++ sandbox/trunk/2to3/lib2to3/tests/test_fixers.py	Wed Jun  3 20:18:05 2009
@@ -4052,8 +4052,3 @@
         b = """os.getcwdu (  )"""
         a = """os.getcwd (  )"""
         self.check(b, a)
-
-
-if __name__ == "__main__":
-    import __main__
-    support.run_all_tests(__main__)


More information about the Python-checkins mailing list