[Python-checkins] CVS: python/dist/src/Misc NEWS,1.155,1.156

Tim Peters tim_one@users.sourceforge.net
Fri, 04 May 2001 21:24:45 -0700


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

Modified Files:
	NEWS 
Log Message:
Mark string.join() as done.  Turns out string_join() works "for free" now,
because PySequence_Fast() started working for free as soon as
PySequence_Tuple() learned how to work with iterators.  For some reason
unicode.join() still doesn't work, though.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.155
retrieving revision 1.156
diff -C2 -r1.155 -r1.156
*** NEWS	2001/05/05 03:56:37	1.155
--- NEWS	2001/05/05 04:24:43	1.156
***************
*** 24,29 ****
      min()
      reduce()
!     XXX TODO string.join(), unicode.join()
      tuple()
      XXX TODO zip()
      XXX TODO 'x in y'
--- 24,30 ----
      min()
      reduce()
!     string.join()
      tuple()
+     XXX TODO unicode.join()
      XXX TODO zip()
      XXX TODO 'x in y'