[Python-checkins] cpython (3.1): fix spacing
benjamin.peterson
python-checkins at python.org
Fri May 27 21:17:17 CEST 2011
http://hg.python.org/cpython/rev/95117a2da450
changeset: 70443:95117a2da450
branch: 3.1
parent: 70440:4e472427315e
user: Benjamin Peterson <benjamin at python.org>
date: Fri May 27 14:17:04 2011 -0500
summary:
fix spacing
files:
Python/compile.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Python/compile.c b/Python/compile.c
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -1997,7 +1997,7 @@
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 @@
basicblock *cleanup_body;
cleanup_body = compiler_new_block(c);
- if(!cleanup_body)
+ if (!cleanup_body)
return 0;
ADDOP(c, POP_TOP);
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list