[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex,1.80.6.16,1.80.6.17

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Sat, 28 Dec 2002 21:59:11 -0800


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

Modified Files:
      Tag: release22-maint
	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.80.6.16
retrieving revision 1.80.6.17
diff -C2 -d -r1.80.6.16 -r1.80.6.17
*** libstdtypes.tex	16 Nov 2002 00:45:14 -0000	1.80.6.16
--- libstdtypes.tex	29 Dec 2002 05:59:08 -0000	1.80.6.17
***************
*** 939,945 ****
    deprecated since Python 1.4.
  
! \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
--- 939,943 ----
    deprecated since Python 1.4.
  
! \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