Commit 6c6b8cd1 authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.1

parents 2b776d2a e916e4ed
......@@ -1983,7 +1983,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);
......@@ -2032,7 +2032,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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment