[Python-checkins] CVS: python/dist/src/Misc NEWS,1.159,1.160

Tim Peters tim_one@users.sourceforge.net
Sat, 05 May 2001 04:33:45 -0700


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

Modified Files:
	NEWS 
Log Message:
Generalize PySequence_Count() (operator.countOf) to work with iterators.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.159
retrieving revision 1.160
diff -C2 -r1.159 -r1.160
*** NEWS	2001/05/05 10:14:34	1.159
--- NEWS	2001/05/05 11:33:43	1.160
***************
*** 24,31 ****
      min()
      reduce()
      .join() method of strings
!     tuple()
      XXX TODO zip()
!     'x in y' and 'x not in y'
  
  What's New in Python 2.1 (final)?
--- 24,33 ----
      min()
      reduce()
+     tuple() (PySequence_Tuple() and PySequence_Fast() in C API)
      .join() method of strings
!     'x in y' and 'x not in y' (PySequence_Contains() in C API)
!     operator.countOf() (PySequence_Count() in C API)
      XXX TODO zip()
! 
  
  What's New in Python 2.1 (final)?