From: Thomas Wouters Date: Wed, 1 Mar 2006 05:32:33 +0000 (+0000) Subject: Put back the essence of Jeremy's original XXX comment. X-Git-Tag: v2.5a0~447 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f59732716816b6bed4c4d0e9d2a31425ddf03b5;p=python Put back the essence of Jeremy's original XXX comment. --- diff --git a/Python/ceval.c b/Python/ceval.c index 8d0f7e6ce2..4e3209ff81 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);