mirror of
https://github.com/python/cpython.git
synced 2025-11-01 06:01:29 +00:00
answer a question from a comment
This commit is contained in:
parent
1d278fc7d0
commit
d34fa52a06
1 changed files with 3 additions and 3 deletions
|
|
@ -3659,9 +3659,9 @@ call_function(PyObject ***pp_stack, int oparg
|
|||
Py_DECREF(func);
|
||||
}
|
||||
|
||||
/* Clear the stack of the function object and the arguments,
|
||||
in case they weren't consumed already.
|
||||
XXX(twouters) when are they not consumed already?
|
||||
/* Clear the stack of the function object. Also removes
|
||||
the arguments in case they weren't consumed already
|
||||
(fast_function() and err_args() leave them on the stack).
|
||||
*/
|
||||
while ((*pp_stack) > pfunc) {
|
||||
w = EXT_POP(*pp_stack);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue