From: Benjamin Peterson Date: Fri, 27 May 2011 19:17:04 +0000 (-0500) Subject: fix spacing X-Git-Tag: v3.1.4rc1~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0a5dad9ef1e3203f3ab7a15ffe051299081ef672;p=python fix spacing --- diff --git a/Python/compile.c b/Python/compile.c index 04c65b451a..0a85bf8271 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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);