Skip to content

Commit 4aa025a

Browse files
Fix order
1 parent 0f6d542 commit 4aa025a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ dummy_func(
937937
}
938938

939939
macro(BINARY_OP_SUBSCR_STR_INT) =
940-
_GUARD_TOS_INT + _GUARD_NOS_UNICODE + unused/5 + _BINARY_OP_SUBSCR_STR_INT + POP_TOP + _POP_TOP_INT;
940+
_GUARD_TOS_INT + _GUARD_NOS_UNICODE + unused/5 + _BINARY_OP_SUBSCR_STR_INT + POP_TOP_INT + POP_TOP;
941941

942942
op(_BINARY_OP_SUBSCR_STR_INT, (str_st, sub_st -- res, s, i)) {
943943
PyObject *sub = PyStackRef_AsPyObjectBorrow(sub_st);

0 commit comments

Comments
 (0)