summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/ceval.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 8d0f7e6..4e3209f 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3654,7 +3654,9 @@ call_function(PyObject ***pp_stack, int oparg
}
/* Clear the stack of the function object and the arguments,
- in case they weren't consumed already */
+ in case they weren't consumed already.
+ XXX(twouters) when are they not consumed already?
+ */
while ((*pp_stack) > pfunc) {
w = EXT_POP(*pp_stack);
Py_DECREF(w);