diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-27 19:17:04 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-27 19:17:04 (GMT) |
commit | 0a5dad9ef1e3203f3ab7a15ffe051299081ef672 (patch) | |
tree | e07cd00fe657b980524b4b60f3f00e1903028bbf /Python | |
parent | 74897ba46fe7a0be6d700f647c514298a0de06ba (diff) | |
download | cpython-0a5dad9ef1e3203f3ab7a15ffe051299081ef672.zip cpython-0a5dad9ef1e3203f3ab7a15ffe051299081ef672.tar.gz cpython-0a5dad9ef1e3203f3ab7a15ffe051299081ef672.tar.bz2 |
fix spacing
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c index 04c65b4..0a85bf8 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); |