[Python-checkins] r53678 - sandbox/trunk/2to3/fixes/fix_throw.py

guido.van.rossum python-checkins at python.org
Thu Feb 8 23:46:51 CET 2007


Author: guido.van.rossum
Date: Thu Feb  8 23:46:50 2007
New Revision: 53678

Modified:
   sandbox/trunk/2to3/fixes/fix_throw.py
Log:
Fix unit test failure caused by improper indentation in PATTERN
(introduced by my folding a long line).


Modified: sandbox/trunk/2to3/fixes/fix_throw.py
==============================================================================
--- sandbox/trunk/2to3/fixes/fix_throw.py	(original)
+++ sandbox/trunk/2to3/fixes/fix_throw.py	Thu Feb  8 23:46:50 2007
@@ -14,7 +14,7 @@
     PATTERN = """
     power< any trailer< '.' 'throw' >
            trailer< '(' args=arglist< exc=any ',' val=any [',' tb=any] > ')' >
-         >
+    >
     """
 
     def transform(self, node):


More information about the Python-checkins mailing list