summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-05-27 14:17:04 -0500
committerBenjamin Peterson <benjamin@python.org>2011-05-27 14:17:04 -0500
commite916e4ed5ffa279e9d5dd8064fce25c2e3604091 (patch)
tree512005dab3f7f3adf79dde315f52aab72f3244f4 /Python
parenta22bbb7a28b341d7e5224009d1949e740b3a8464 (diff)
downloadcpython-e916e4ed5ffa279e9d5dd8064fce25c2e3604091.tar.gz
fix spacing
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 04c65b451a..0a85bf8271 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);