[Python-checkins] CVS: python/dist/src/Doc/lib libexcs.tex,1.36,1.37 libstdtypes.tex,1.57,1.58

Fred L. Drake fdrake@users.sourceforge.net
Wed, 02 May 2001 21:39:12 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv25077

Modified Files:
	libexcs.tex libstdtypes.tex 
Log Message:

The general iteration support is part of 2.2, not 2.1 -- fixed the version
annotations!

Also fixed a typo noted by Neil S.


Index: libexcs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libexcs.tex,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -r1.36 -r1.37
*** libexcs.tex	2001/05/03 04:30:45	1.36
--- libexcs.tex	2001/05/03 04:39:10	1.37
***************
*** 244,247 ****
--- 244,248 ----
    \exception{StandardError}, since this is not considered an error in
    its normal application.
+   \versionadded{2.2}
  \end{excdesc}
  

Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -r1.57 -r1.58
*** libstdtypes.tex	2001/05/02 20:18:03	1.57
--- libstdtypes.tex	2001/05/03 04:39:10	1.58
***************
*** 316,320 ****
  \subsection{Iterator Types \label{typeiter}}
  
! \versionadded{2.1}
  \index{iterator protocol}
  \index{protocol!iterator}
--- 316,320 ----
  \subsection{Iterator Types \label{typeiter}}
  
! \versionadded{2.2}
  \index{iterator protocol}
  \index{protocol!iterator}
***************
*** 352,356 ****
  \end{methoddesc}
  
! \begin{methoddesc}[iteratpr]{next}{}
    Return the next item from the container.  If there are no further
    items, raise the \exception{StopIteration} exception.  This method
--- 352,356 ----
  \end{methoddesc}
  
! \begin{methoddesc}[iterator]{next}{}
    Return the next item from the container.  If there are no further
    items, raise the \exception{StopIteration} exception.  This method