summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c
index f2a28f5..ba593a0 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -1983,7 +1983,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);
@@ -2032,7 +2032,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);