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

benjamin.peterson python-checkins at python.org
Wed Dec 31 18:55:10 CET 2008


Author: benjamin.peterson
Date: Wed Dec 31 18:55:10 2008
New Revision: 68107

Log:
add another test

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 Dec 31 18:55:10 2008
@@ -1084,6 +1084,9 @@
         s = """class long(): pass"""
         self.unchanged(s)
 
+        s = """def f(g, long): pass"""
+        self.unchanged(s)
+
         s = """def f(x, long=True): pass"""
         self.unchanged(s)
 


More information about the Python-checkins mailing list