[Python-checkins] r42717 - python/trunk/Python/ceval.c

thomas.wouters python-checkins at python.org
Wed Mar 1 06:32:37 CET 2006


Author: thomas.wouters
Date: Wed Mar  1 06:32:33 2006
New Revision: 42717

Modified:
   python/trunk/Python/ceval.c
Log:

Put back the essence of Jeremy's original XXX comment.



Modified: python/trunk/Python/ceval.c
==============================================================================
--- python/trunk/Python/ceval.c	(original)
+++ python/trunk/Python/ceval.c	Wed Mar  1 06:32:33 2006
@@ -3654,7 +3654,9 @@
 	}
 
 	/* 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);


More information about the Python-checkins mailing list