There was an error while loading. Please reload this page.
1 parent 7c0f498 commit 03e7ad9Copy full SHA for 03e7ad9
1 file changed
Python/ceval.c
@@ -4584,14 +4584,14 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, InterpreterFrame *frame, int thr
4584
kwnames = POP();
4585
int is_method = (PEEK(oparg + 2) != NULL);
4586
oparg += is_method;
4587
- nargs = oparg - PyTuple_GET_SIZE(kwnames);
+ nargs = oparg - (int)PyTuple_GET_SIZE(kwnames);
4588
stackadj = 2-is_method;
4589
goto call_function;
4590
}
4591
4592
TARGET(CALL_FUNCTION_KW) {
4593
4594
4595
stackadj = 1;
4596
4597
0 commit comments