We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent addabb8 commit 5ab9250Copy full SHA for 5ab9250
Objects/abstract.c
@@ -2308,12 +2308,14 @@ call_function_tail(PyObject *callable, PyObject *args)
2308
if (args == NULL)
2309
return NULL;
2310
2311
+ STACKLESS_PROMOTE_ALL();
2312
if (!PyTuple_Check(args)) {
2313
result = _PyObject_FastCall(callable, &args, 1, NULL);
2314
}
2315
else {
2316
result = PyObject_Call(callable, args, NULL);
2317
2318
+ STACKLESS_ASSERT();
2319
2320
Py_DECREF(args);
2321
return result;
0 commit comments