diff options
author | Skip Montanaro <skip@pobox.com> | 2005-01-05 07:19:11 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2005-01-05 07:19:11 (GMT) |
commit | becbdec1d9422fa2f1cd81dbe165f796e7b0d46f (patch) | |
tree | b7d1337d1f7b6f3a04428c4c769cfec6c66204a6 /Doc/lib/libdis.tex | |
parent | b80bad4366451ce020b415234fec464c4b9b5eea (diff) | |
download | cpython-becbdec1d9422fa2f1cd81dbe165f796e7b0d46f.zip cpython-becbdec1d9422fa2f1cd81dbe165f796e7b0d46f.tar.gz cpython-becbdec1d9422fa2f1cd81dbe165f796e7b0d46f.tar.bz2 |
add two missing items
Diffstat (limited to 'Doc/lib/libdis.tex')
-rw-r--r-- | Doc/lib/libdis.tex | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/lib/libdis.tex b/Doc/lib/libdis.tex index d0354c6..26ba967 100644 --- a/Doc/lib/libdis.tex +++ b/Doc/lib/libdis.tex @@ -78,6 +78,10 @@ for compatibility with earlier Python releases. Sequence of operation names, indexable using the byte code. \end{datadesc} +\begin{datadesc}{opmap} +Dictionary mapping byte codes to operation names. +\end{datadesc} + \begin{datadesc}{cmp_op} Sequence of all compare operation names. \end{datadesc} @@ -688,3 +692,9 @@ Calls a function. \var{argc} is interpreted as in keyword arguments dictionary, followed by the variable-arguments tuple, followed by explicit keyword and positional arguments. \end{opcodedesc} + +\begin{opcodedesc}{HAVE_ARGUMENT}{} +This is not really an opcode. It identifies the dividing line between +opcodes which don't take arguments \code{< HAVE_ARGUMENT} and those which do +\code{>= HAVE_ARGUMENT}. +\end{opcodedesc} |