summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2001-09-27 14:17:33 (GMT)
committerMarc-André Lemburg <mal@egenix.com>2001-09-27 14:17:33 (GMT)
commitbf99017bbb7e6a9be29a949ddb308871af12b31f (patch)
tree90b9cce24e6123c76d5110b6c9760ddc821de611 /Misc/NEWS
parentb6fa78930e2025b81c29f9893e8edd78e67d77df (diff)
downloadcpython-bf99017bbb7e6a9be29a949ddb308871af12b31f.zip
cpython-bf99017bbb7e6a9be29a949ddb308871af12b31f.tar.gz
cpython-bf99017bbb7e6a9be29a949ddb308871af12b31f.tar.bz2
Added note about new StringIO/cStringIO feature.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 30e225f..f38d353 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 <http://sf.net/projects/mimelib> with API changes
and some implementations updated to use iterators and generators.