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

Thomas Wouters python-dev@python.org
Fri, 11 Aug 2000 15:15:55 -0700


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

Modified Files:
	libdis.tex 
Log Message:

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 ?



Index: libdis.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libdis.tex,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** libdis.tex	2000/06/15 18:44:30	1.19
--- libdis.tex	2000/08/11 22:15:52	1.20
***************
*** 338,349 ****
  \end{opcodedesc}
  
! \begin{opcodedesc}{UNPACK_TUPLE}{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_ARG}{count}
--- 338,349 ----
  \end{opcodedesc}
  
! \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}
! %This opcode is obsolete.
! %\end{opcodedesc}
  
  %\begin{opcodedesc}{UNPACK_ARG}{count}