Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d8255e0

Browse files
committed
merge 3.2
2 parents 4a0f20f + a290bac commit d8255e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/compile.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1989,7 +1989,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
19891989

19901990
cleanup_end = compiler_new_block(c);
19911991
cleanup_body = compiler_new_block(c);
1992-
if(!(cleanup_end || cleanup_body))
1992+
if (!(cleanup_end || cleanup_body))
19931993
return 0;
19941994

19951995
compiler_nameop(c, handler->v.ExceptHandler.name, Store);
@@ -2038,7 +2038,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
20382038
basicblock *cleanup_body;
20392039

20402040
cleanup_body = compiler_new_block(c);
2041-
if(!cleanup_body)
2041+
if (!cleanup_body)
20422042
return 0;
20432043

20442044
ADDOP(c, POP_TOP);

0 commit comments

Comments
 (0)