diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-27 14:17:19 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-27 14:17:19 -0500 |
commit | 6c6b8cd1304f757f555d6a23a083a72fd231f594 (patch) | |
tree | c6a7ff2f4318e297515fa7b387f3fd1ba63b0d63 /Python/compile.c | |
parent | 2b776d2a54de7800a658c16b0ac829d6c04df282 (diff) | |
parent | e916e4ed5ffa279e9d5dd8064fce25c2e3604091 (diff) | |
download | cpython-6c6b8cd1304f757f555d6a23a083a72fd231f594.tar.gz |
merge 3.1
Diffstat (limited to 'Python/compile.c')
-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 f2a28f5786..ba593a0b99 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); |