[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex,1.91,1.92

fdrake@sourceforge.net fdrake@sourceforge.net
Thu, 02 May 2002 14:37:25 -0700


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

Modified Files:
	libstdtypes.tex 
Log Message:
Update the xrange object description to reflect the removal of deprecated
features.

Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.91
retrieving revision 1.92
diff -C2 -d -r1.91 -r1.92
*** libstdtypes.tex	2 May 2002 17:54:18 -0000	1.91
--- libstdtypes.tex	2 May 2002 21:37:23 -0000	1.92
***************
*** 402,408 ****
  syntax to create them, but they are created using the
  \function{xrange()} function.\bifuncindex{xrange}  They don't support
! slicing or concatenation, but do support repetition, and using
! \code{in}, \code{not in}, \function{min()} or \function{max()} on them
! is inefficient.
  \obindex{xrange}
  
--- 402,408 ----
  syntax to create them, but they are created using the
  \function{xrange()} function.\bifuncindex{xrange}  They don't support
! slicing, concatenation, or repetition, and using \keyword{in},
! \keyword{not} \keyword{in}, \function{min()} or \function{max()} on
! them is inefficient.
  \obindex{xrange}