summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-27 19:17:19 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-05-27 19:17:19 (GMT)
commita290bac5b1cc415ce4efd50525870c0c505c9840 (patch)
treeb1f7f7cc0ee67a4e07735ff929cca72a98986c40 /Python/compile.c
parent5218853c671d30f3db5f49f897617f3350db81d5 (diff)
parent0a5dad9ef1e3203f3ab7a15ffe051299081ef672 (diff)
downloadcpython-a290bac5b1cc415ce4efd50525870c0c505c9840.zip
cpython-a290bac5b1cc415ce4efd50525870c0c505c9840.tar.gz
cpython-a290bac5b1cc415ce4efd50525870c0c505c9840.tar.bz2
merge 3.1
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 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);