Skip to content

Commit ae3d7a2

Browse files
author
Anselm Kruis
committed
Stackless issue python#138: use STACKLESS_PROPOSE_ALL() in ext_do_call()
Replace STACKLESS_PROPOSE(func) in do_call() and ext_do_call() by STACKLESS_PROPOSE_ALL().
1 parent 188f1ae commit ae3d7a2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/ceval.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5643,7 +5643,7 @@ do_call(PyObject *func, PyObject ***pp_stack, Py_ssize_t nargs, Py_ssize_t nkwar
56435643
else
56445644
PCALL(PCALL_OTHER);
56455645
#endif
5646-
STACKLESS_PROPOSE(func);
5646+
STACKLESS_PROPOSE_ALL();
56475647
if (PyCFunction_Check(func)) {
56485648
PyThreadState *tstate = PyThreadState_GET();
56495649
C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));
@@ -5751,7 +5751,7 @@ ext_do_call(PyObject *func, PyObject ***pp_stack, int flags,
57515751
else
57525752
PCALL(PCALL_OTHER);
57535753
#endif
5754-
STACKLESS_PROPOSE(func);
5754+
STACKLESS_PROPOSE_ALL();
57555755
if (PyCFunction_Check(func)) {
57565756
PyThreadState *tstate = PyThreadState_GET();
57575757
C_TRACE(result, PyCFunction_Call(func, callargs, kwdict));

0 commit comments

Comments
 (0)