Skip to content

Commit bf27867

Browse files
committed
PEP7
1 parent 3ed47d2 commit bf27867

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python/optimizer_analysis.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,8 @@ remove_unneeded_uops(_PyUOpInstruction *buffer, int buffer_size)
613613
// _NOP + _POP_TOP + _NOP
614614
while (op_without_pop[opcode] ||
615615
opcode == _POP_CALL ||
616-
opcode == _POP_CALL_LOAD_CONST_INLINE_BORROW) {
616+
opcode == _POP_CALL_LOAD_CONST_INLINE_BORROW)
617+
{
617618
_PyUOpInstruction *last = &buffer[pc - 1];
618619
while (op_skip[last->opcode]) {
619620
last--;

0 commit comments

Comments
 (0)