mirror of
https://github.com/python/cpython.git
synced 2025-07-24 19:54:21 +00:00
Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they
did the same anyway. I'm not sure what to do with Tools/compiler/compiler/* -- that isn't part of distutils, is it ? Should it try to be compatible with old bytecode version ?
This commit is contained in:
parent
a8d7341f63
commit
0be5aab04d
6 changed files with 15 additions and 29 deletions
|
@ -337,14 +337,14 @@ Implements \code{del name}, where \var{namei} is the index into
|
|||
\member{co_names} attribute of the code object.
|
||||
\end{opcodedesc}
|
||||
|
||||
\begin{opcodedesc}{UNPACK_TUPLE}{count}
|
||||
\begin{opcodedesc}{UNPACK_SEQUENCE}{count}
|
||||
Unpacks TOS into \var{count} individual values, which are put onto
|
||||
the stack right-to-left.
|
||||
\end{opcodedesc}
|
||||
|
||||
\begin{opcodedesc}{UNPACK_LIST}{count}
|
||||
Unpacks TOS into \var{count} individual values.
|
||||
\end{opcodedesc}
|
||||
%\begin{opcodedesc}{UNPACK_LIST}{count}
|
||||
%This opcode is obsolete.
|
||||
%\end{opcodedesc}
|
||||
|
||||
%\begin{opcodedesc}{UNPACK_ARG}{count}
|
||||
%This opcode is obsolete.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue