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

Tim Peters tim_one@users.sourceforge.net
Fri, 04 May 2001 22:36:50 -0700


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

Modified Files:
	NEWS 
Log Message:
Make unicode.join() work nice with iterators.  This also required a change
to string.join(), so that when the latter figures out in midstream that
it really needs unicode.join() instead, unicode.join() can actually get
all the sequence elements (i.e., there's no guarantee that the sequence
passed to string.join() can be iterated over *again* by unicode.join(),
so string.join() must not pass on the original sequence object anymore).


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.156
retrieving revision 1.157
diff -C2 -r1.156 -r1.157
*** NEWS	2001/05/05 04:24:43	1.156
--- NEWS	2001/05/05 05:36:48	1.157
***************
*** 26,30 ****
      string.join()
      tuple()
!     XXX TODO unicode.join()
      XXX TODO zip()
      XXX TODO 'x in y'
--- 26,30 ----
      string.join()
      tuple()
!     unicode.join()
      XXX TODO zip()
      XXX TODO 'x in y'