[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex,1.114,1.115

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 28 Dec 2002 21:49:12 -0800


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

Modified Files:
	libstdtypes.tex 
Log Message:
SF Bug 645777:  list.extend() works with any iterable and is no longer
experimental.



Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.114
retrieving revision 1.115
diff -C2 -d -r1.114 -r1.115
*** libstdtypes.tex	16 Dec 2002 18:12:45 -0000	1.114
--- libstdtypes.tex	29 Dec 2002 05:49:09 -0000	1.115
***************
*** 947,953 ****
    and became an error with the introduction of Python 2.0.
  
! \item[(2)] Raises an exception when \var{x} is not a list object.  The
!   \method{extend()} method is experimental and not supported by
!   mutable sequence types other than lists.
  
  \item[(3)] Raises \exception{ValueError} when \var{x} is not found in
--- 947,951 ----
    and became an error with the introduction of Python 2.0.
  
! \item[(2)] Raises an exception when \var{x} is not an iterable object.
  
  \item[(3)] Raises \exception{ValueError} when \var{x} is not found in