Merge issue #16538: correctly describe MAKE_CLOSURE in docs.

Patch by Daniel Urban
This commit is contained in:
Andrew Svetlov 2012-11-23 15:29:48 +02:00
commit 9f8c2194c2
1 changed files with 4 additions and 3 deletions

View File

@ -763,9 +763,10 @@ the more significant byte last.
.. opcode:: MAKE_CLOSURE (argc)
Creates a new function object, sets its *__closure__* slot, and pushes it on
the stack. TOS is the code associated with the function, TOS1 the tuple
containing cells for the closure's free variables. The function also has
*argc* default parameters, which are found below the cells.
the stack. TOS is the :term:`qualified name` of the function, TOS1 is the
code associated with the function, and TOS2 is the tuple containing cells for
the closure's free variables. The function also has *argc* default parameters,
which are found below the cells.
.. opcode:: BUILD_SLICE (argc)