@@ -638,22 +638,17 @@ PyCode_Optimize(PyObject *code, PyObject* consts, PyObject *names,
638638
639639 j = codestr [tgt ];
640640 if (CONDITIONAL_JUMP (j )) {
641- /* NOTE: all possible jumps here are
642- absolute! */
641+ /* NOTE: all possible jumps here are absolute. */
643642 if (JUMPS_ON_TRUE (j ) == JUMPS_ON_TRUE (opcode )) {
644- /* The second jump will be
645- taken iff the first is.
646- The current opcode inherits
647- its target's stack effect */
643+ /* The second jump will be taken iff the first is.
644+ The current opcode inherits its target's
645+ stack effect */
648646 h = set_arg (codestr , i , get_arg (codestr , tgt ));
649647 } else {
650- /* The second jump is not taken
651- if the first is (so jump past
652- it), and all conditional
653- jumps pop their argument when
654- they're not taken (so change
655- the first jump to pop its
656- argument when it's taken). */
648+ /* The second jump is not taken if the first is (so
649+ jump past it), and all conditional jumps pop their
650+ argument when they're not taken (so change the
651+ first jump to pop its argument when it's taken). */
657652 h = set_arg (codestr , i , tgt + 2 );
658653 j = opcode == JUMP_IF_TRUE_OR_POP ?
659654 POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE ;
0 commit comments