[Python-checkins] CVS: python/dist/src/Misc NEWS,1.248,1.249

Barry Warsaw bwarsaw@users.sourceforge.net
Fri, 21 Sep 2001 21:44:23 -0700


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

Modified Files:
	NEWS 
Log Message:
{String,cString}IO.StringIO's support iteration.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.248
retrieving revision 1.249
diff -C2 -d -r1.248 -r1.249
*** NEWS	2001/09/20 12:59:37	1.248
--- NEWS	2001/09/22 04:44:21	1.249
***************
*** 46,49 ****
--- 46,53 ----
  Library
  
+ - StringIO.StringIO instances and cStringIO.StringIO instances support
+   iteration just like file objects (i.e. their .readline() method is
+   called for each iteration until it returns an empty string).
+ 
  - The codecs module has grown four new helper APIs to access
    builtin codecs: getencoder(), getdecoder(), getreader(),