]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
add two missing items
authorSkip Montanaro <skip@pobox.com>
Wed, 5 Jan 2005 07:19:11 +0000 (07:19 +0000)
committerSkip Montanaro <skip@pobox.com>
Wed, 5 Jan 2005 07:19:11 +0000 (07:19 +0000)
Doc/lib/libdis.tex

index d0354c634dc7fffa2fc7b8b43ef964cc855a7ee6..26ba96757def51c587fa3eaae6cf1a28586d6fc6 100644 (file)
@@ -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}