From: Barry Warsaw Date: Sat, 22 Sep 2001 04:44:21 +0000 (+0000) Subject: {String,cString}IO.StringIO's support iteration. X-Git-Tag: v2.2.1c1~1680 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=58b072d53f48081111f6b6dd8ab1bea0d02eb459;p=python {String,cString}IO.StringIO's support iteration. --- diff --git a/Misc/NEWS b/Misc/NEWS index 93555e6fad..47cf1f1d66 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -45,6 +45,10 @@ Core 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(), getwriter().