]> granicus.if.org Git - python/commitdiff
fix spacing
authorBenjamin Peterson <benjamin@python.org>
Fri, 27 May 2011 19:17:04 +0000 (14:17 -0500)
committerBenjamin Peterson <benjamin@python.org>
Fri, 27 May 2011 19:17:04 +0000 (14:17 -0500)
Python/compile.c

index 04c65b451adf48ce0acaad63350a4c97ca671206..0a85bf8271c151795c9e5a2e8ff1723ca98c3958 100644 (file)
@@ -1997,7 +1997,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
 
             cleanup_end = compiler_new_block(c);
             cleanup_body = compiler_new_block(c);
-            if(!(cleanup_end || cleanup_body))
+            if (!(cleanup_end || cleanup_body))
                 return 0;
 
             compiler_nameop(c, handler->v.ExceptHandler.name, Store);
@@ -2046,7 +2046,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
             basicblock *cleanup_body;
 
             cleanup_body = compiler_new_block(c);
-            if(!cleanup_body)
+            if (!cleanup_body)
                 return 0;
 
             ADDOP(c, POP_TOP);