diff options
author | Raymond Hettinger <python@rcn.com> | 2004-03-13 18:18:51 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-03-13 18:18:51 (GMT) |
commit | 3aa82c07f709a532de28a39308c23757d3b9c91b (patch) | |
tree | 9afcb4a3e014ee23daac39f38f45cb3b21811345 /Misc/NEWS | |
parent | 42bec93e5c0fd114b2f4c3c498b35001d97a94c4 (diff) | |
download | cpython-3aa82c07f709a532de28a39308c23757d3b9c91b.zip cpython-3aa82c07f709a532de28a39308c23757d3b9c91b.tar.gz cpython-3aa82c07f709a532de28a39308c23757d3b9c91b.tar.bz2 |
SF bug #910986: copy.copy fails for array.array
Added support for the copy module.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -180,6 +180,8 @@ Core and builtins Extension modules ----------------- +- array objects now support the copy module + - cStringIO.writelines() now accepts any iterable argument and writes the lines one at a time rather than joining them and writing once. Made a parallel change to StringIO.writelines(). Saves memory and |