[Python-checkins] python/dist/src/Misc NEWS,1.1115,1.1116

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Aug 29 09:50:45 CEST 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv772/Misc

Modified Files:
	NEWS 
Log Message:
SF feature request #992967:  array.array objects should support sequences.

Made the constructor accept general iterables.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1115
retrieving revision 1.1116
diff -u -d -r1.1115 -r1.1116
--- NEWS	26 Aug 2004 01:44:07 -0000	1.1115
+++ NEWS	29 Aug 2004 07:50:42 -0000	1.1116
@@ -732,8 +732,8 @@
 - array objects now support the copy module.  Also, their resizing
   scheme has been updated to match that used for list objects.  This improves
   the performance (speed and memory usage) of append() operations.
-  Also, array.extend() now accepts any iterable argument for repeated
-  appends without needing to create another temporary array.
+  Also, array.array() and array.extend() now accept any iterable argument
+  for repeated appends without needing to create another temporary array.
 
 - cStringIO.writelines() now accepts any iterable argument and writes
   the lines one at a time rather than joining them and writing once.



More information about the Python-checkins mailing list