Commit 237819ed authored by Armin Rigo's avatar Armin Rigo

answer a question from a comment

parent d838be00
...@@ -3659,9 +3659,9 @@ call_function(PyObject ***pp_stack, int oparg ...@@ -3659,9 +3659,9 @@ call_function(PyObject ***pp_stack, int oparg
Py_DECREF(func); Py_DECREF(func);
} }
/* Clear the stack of the function object and the arguments, /* Clear the stack of the function object. Also removes
in case they weren't consumed already. the arguments in case they weren't consumed already
XXX(twouters) when are they not consumed already? (fast_function() and err_args() leave them on the stack).
*/ */
while ((*pp_stack) > pfunc) { while ((*pp_stack) > pfunc) {
w = EXT_POP(*pp_stack); w = EXT_POP(*pp_stack);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment