summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-27 19:17:35 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-05-27 19:17:35 (GMT)
commitd8255e0e9e154c5b9df7d36c1cdf3b67768d3376 (patch)
treed5437c2f0b2d24b039400103974cb93bba95d5aa /Python/compile.c
parent4a0f20f5a324ac84fc515e0666575d5c705f2aec (diff)
parenta290bac5b1cc415ce4efd50525870c0c505c9840 (diff)
downloadcpython-d8255e0e9e154c5b9df7d36c1cdf3b67768d3376.zip
cpython-d8255e0e9e154c5b9df7d36c1cdf3b67768d3376.tar.gz
cpython-d8255e0e9e154c5b9df7d36c1cdf3b67768d3376.tar.bz2
merge 3.2
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 65d43da..d24528b 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -1989,7 +1989,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);
@@ -2038,7 +2038,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);