Skip to content

Commit 4df3e6b

Browse files
committed
regen
1 parent d87d9af commit 4df3e6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/opcode_metadata.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ _PyOpcode_num_popped(int opcode, int oparg) {
8686
case CALL_INTRINSIC_1:
8787
return 1;
8888
case RAISE_VARARGS:
89-
return -1;
89+
return oparg;
9090
case INTERPRETER_EXIT:
9191
return 1;
9292
case RETURN_VALUE:
@@ -430,7 +430,7 @@ _PyOpcode_num_pushed(int opcode, int oparg) {
430430
case CALL_INTRINSIC_1:
431431
return 1;
432432
case RAISE_VARARGS:
433-
return -1;
433+
return 0;
434434
case INTERPRETER_EXIT:
435435
return 0;
436436
case RETURN_VALUE:

0 commit comments

Comments
 (0)