From: Marc-André Lemburg Date: Thu, 27 Sep 2001 14:17:33 +0000 (+0000) Subject: Added note about new StringIO/cStringIO feature. X-Git-Tag: v2.2.1c1~1584 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf99017bbb7e6a9be29a949ddb308871af12b31f;p=python Added note about new StringIO/cStringIO feature. --- diff --git a/Misc/NEWS b/Misc/NEWS index 30e225f797..f38d35377a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -90,6 +90,11 @@ Core Library +- StringIO.StringIO instances and cStringIO.StringIO instances support + read character buffer compatible objects for their .write() methods. + These objects are converted to strings and then handled as such + by the instances. + - The "email" package has been added. This is basically a port of the mimelib package with API changes and some implementations updated to use iterators and generators.