]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
clarify CALL_FUNCTION #4141
authorBenjamin Peterson <benjamin@python.org>
Fri, 17 Oct 2008 20:01:01 +0000 (20:01 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 17 Oct 2008 20:01:01 +0000 (20:01 +0000)
Doc/ACKS.txt
Doc/library/dis.rst

index 84d73398702f6c8689b120083d5baff54cc07ce2..7680d00110df5bad8f749e885f7e767a9e47fd96 100644 (file)
@@ -189,6 +189,7 @@ docs@python.org), and we'll be glad to correct the problem.
    * Reuben Sumner
    * Kalle Svensson
    * Jim Tittsler
+   * David Turner
    * Ville Vainio
    * Martijn Vries
    * Charles G. Waldman
index 6d971f5a9f02d4cc63e0bb46e2834ac728851760..84a0c2598b5c57284d63507723a38ee629fc39d2 100644 (file)
@@ -755,7 +755,8 @@ the more significant byte last.
    opcode finds the keyword parameters first.  For each keyword argument, the value
    is on top of the key.  Below the keyword parameters, the positional parameters
    are on the stack, with the right-most parameter on top.  Below the parameters,
-   the function object to call is on the stack.
+   the function object to call is on the stack.  Pops all function arguments, and 
+   the function itself off the stack, and pushes the return value.
 
 
 .. opcode:: MAKE_FUNCTION (argc)