[Python-checkins] python/dist/src/Doc/lib libfuncs.tex,1.150,1.151

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Thu Nov 6 09:06:48 EST 2003


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

Modified Files:
	libfuncs.tex 
Log Message:
Implement and apply PEP 322, reverse iteration

Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.150
retrieving revision 1.151
diff -C2 -d -r1.150 -r1.151
*** libfuncs.tex	13 Oct 2003 17:52:35 -0000	1.150
--- libfuncs.tex	6 Nov 2003 14:06:46 -0000	1.151
***************
*** 881,884 ****
--- 881,892 ----
  \end{funcdesc}
  
+ \begin{funcdesc}{reversed}{seq}
+   Return a reverse iterator.  \var{seq} must be an object which
+   supports the sequence protocol (the __len__() method and the
+   \method{__getitem__()} method with integer arguments starting at
+   \code{0}).
+   \versionadded{2.4}
+ \end{funcdesc}
+ 
  \begin{funcdesc}{round}{x\optional{, n}}
    Return the floating point value \var{x} rounded to \var{n} digits





More information about the Python-checkins mailing list