mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
merge 3.2
This commit is contained in:
commit
d8255e0e9e
1 changed files with 2 additions and 2 deletions
|
@ -1989,7 +1989,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);
|
||||
|
@ -2038,7 +2038,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue