[Python-checkins] CVS: python/dist/src/Doc/lib libdis.tex,1.24,1.25

Fred L. Drake python-dev@python.org
Wed, 23 Aug 2000 17:37:53 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv25645/lib

Modified Files:
	libdis.tex 
Log Message:

Charles G. Waldman <cgw@fnal.gov>:
Update the dis module documentation to reflect the EXTENDED_ARG opcode.


Index: libdis.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libdis.tex,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** libdis.tex	2000/08/21 17:19:00	1.24
--- libdis.tex	2000/08/24 00:37:50	1.25
***************
*** 533,536 ****
--- 533,543 ----
  \end{opcodedesc}
  
+ \begin{opcodedesc}{EXTENDED_ARG}{ext}
+ Prefixes any opcode which has an argument too big to fit into the
+ default two bytes.  \var{ext} holds two additional bytes which, taken
+ together with the subsequent opcode's argument, comprise a four-byte
+ argument, \var {ext} being the two most-significant bytes.
+ \end{opcodedesc}
+ 
  \begin{opcodedesc}{CALL_FUNCTION_VAR}{argc}
  Calls a function. \var{argc} is interpreted as in \code{CALL_FUNCTION}.