summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2006-03-01 05:32:33 (GMT)
committerThomas Wouters <thomas@python.org>2006-03-01 05:32:33 (GMT)
commit7f59732716816b6bed4c4d0e9d2a31425ddf03b5 (patch)
tree6d50c61a09775adb404c6030e1a39d1a5421f8ad /Python/ceval.c
parent497114e0275ddf59664509146e48638d277ecdd2 (diff)
downloadcpython-7f59732716816b6bed4c4d0e9d2a31425ddf03b5.zip
cpython-7f59732716816b6bed4c4d0e9d2a31425ddf03b5.tar.gz
cpython-7f59732716816b6bed4c4d0e9d2a31425ddf03b5.tar.bz2
Put back the essence of Jeremy's original XXX comment.
Diffstat (limited to 'Python/ceval.c')
-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);