[Python-checkins] cpython (merge 3.1 -> 3.2): merge 3.1
benjamin.peterson
python-checkins at python.org
Fri May 27 21:17:18 CEST 2011
http://hg.python.org/cpython/rev/a203802bf6b1
changeset: 70444:a203802bf6b1
branch: 3.2
parent: 70441:c168029d20fe
parent: 70443:95117a2da450
user: Benjamin Peterson <benjamin at python.org>
date: Fri May 27 14:17:19 2011 -0500
summary:
merge 3.1
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
@@ -1983,7 +1983,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);
@@ -2032,7 +2032,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