[Python-checkins] cpython (merge 3.2 -> default): merge 3.2

benjamin.peterson python-checkins at python.org
Fri May 27 21:17:19 CEST 2011


http://hg.python.org/cpython/rev/3e7633819514
changeset:   70445:3e7633819514
parent:      70442:84b9024c0834
parent:      70444:a203802bf6b1
user:        Benjamin Peterson <benjamin at python.org>
date:        Fri May 27 14:17:35 2011 -0500
summary:
  merge 3.2

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
@@ -1989,7 +1989,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);
@@ -2038,7 +2038,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