]> granicus.if.org Git - python/commitdiff
Fix indentation.
authorEzio Melotti <ezio.melotti@gmail.com>
Fri, 19 Apr 2013 04:10:09 +0000 (07:10 +0300)
committerEzio Melotti <ezio.melotti@gmail.com>
Fri, 19 Apr 2013 04:10:09 +0000 (07:10 +0300)
Python/compile.c

index 0a8f58e692d81a1b6801a46cedb8fc787102f938..dd4262c1703b34a4cc3bf6e4d80ba3e14d0fe65b 100644 (file)
@@ -2146,13 +2146,13 @@ compiler_try_except(struct compiler *c, stmt_ty s)
 
             /*
               try:
-              # body
+                  # body
               except type as name:
-              try:
-              # body
-              finally:
-              name = None
-              del name
+                  try:
+                      # body
+                  finally:
+                      name = None
+                      del name
             */
 
             /* second try: */