[Python-checkins] CVS: python/dist/src/Misc NEWS,1.175,1.176

Tim Peters tim_one@users.sourceforge.net
Sat, 26 May 2001 12:37:56 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv18842/python/dist/src/Misc

Modified Files:
	NEWS 
Log Message:
Change list.extend() error msgs and NEWS to reflect that list.extend()
now takes any iterable argument, not only sequences.

NEEDS DOC CHANGES -- but I don't think we settled on a concise way to
say this stuff.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.175
retrieving revision 1.176
diff -C2 -r1.175 -r1.176
*** NEWS	2001/05/22 16:00:10	1.175
--- NEWS	2001/05/26 19:37:54	1.176
***************
*** 101,105 ****
      list(), tuple() (PySequence_Tuple() and PySequence_Fast() in C API)
      max(), min()
!     .join() method of strings
      'x in y' and 'x not in y' (PySequence_Contains() in C API)
      operator.countOf() (PySequence_Count() in C API)
--- 101,106 ----
      list(), tuple() (PySequence_Tuple() and PySequence_Fast() in C API)
      max(), min()
!     join() method of strings
!     extend() method of lists
      'x in y' and 'x not in y' (PySequence_Contains() in C API)
      operator.countOf() (PySequence_Count() in C API)