[Python-checkins] python/dist/src/Doc/lib libdis.tex,1.41,1.42

montanaro at users.sourceforge.net montanaro at users.sourceforge.net
Wed Jan 5 08:19:13 CET 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3602

Modified Files:
	libdis.tex 
Log Message:
add two missing items


Index: libdis.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libdis.tex,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- libdis.tex	10 May 2003 08:51:26 -0000	1.41
+++ libdis.tex	5 Jan 2005 07:19:11 -0000	1.42
@@ -78,6 +78,10 @@
 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 @@
 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}



More information about the Python-checkins mailing list