Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a0f20f + a290bac commit d8255e0Copy full SHA for d8255e0
1 file changed
Python/compile.c
@@ -1989,7 +1989,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
1989
1990
cleanup_end = compiler_new_block(c);
1991
cleanup_body = compiler_new_block(c);
1992
- if(!(cleanup_end || cleanup_body))
+ if (!(cleanup_end || cleanup_body))
1993
return 0;
1994
1995
compiler_nameop(c, handler->v.ExceptHandler.name, Store);
@@ -2038,7 +2038,7 @@ compiler_try_except(struct compiler *c, stmt_ty s)
2038
basicblock *cleanup_body;
2039
2040
2041
- if(!cleanup_body)
+ if (!cleanup_body)
2042
2043
2044
ADDOP(c, POP_TOP);
0 commit comments