Explain the clearing of the stack in a comment in Python/ceval.c's
call_function(), rather than commenting on the lack of an explanation in a
comment.
diff --git a/Python/ceval.c b/Python/ceval.c
index 777e981..501a9a0 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3590,7 +3590,8 @@
 		Py_DECREF(func);
 	}
 
-	/* What does this do? */
+	/* Clear the stack of the function object and the arguments,
+	   in case they weren't consumed already */
 	while ((*pp_stack) > pfunc) {
 		w = EXT_POP(*pp_stack);
 		Py_DECREF(w);