[Python-checkins] python/dist/src/Misc ACKS, 1.259, 1.260 NEWS, 1.939, 1.940

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Thu Mar 4 03:25:47 EST 2004


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

Modified Files:
	ACKS NEWS 
Log Message:
SF #904720:  dict.update should take a 2-tuple sequence like dict.__init_
(Championed by Bob Ippolito.)

The update() method for mappings now accepts all the same argument forms
as the dict() constructor.  This includes item lists and/or keyword
arguments.



Index: ACKS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/ACKS,v
retrieving revision 1.259
retrieving revision 1.260
diff -C2 -d -r1.259 -r1.260
*** ACKS	8 Feb 2004 18:54:37 -0000	1.259
--- ACKS	4 Mar 2004 08:25:44 -0000	1.260
***************
*** 274,277 ****
--- 274,278 ----
  Tony Ingraldi
  John Interrante
+ Bob Ippolito
  Ben Jackson
  Paul Jackson

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.939
retrieving revision 1.940
diff -C2 -d -r1.939 -r1.940
*** NEWS	3 Mar 2004 17:42:07 -0000	1.939
--- NEWS	4 Mar 2004 08:25:44 -0000	1.940
***************
*** 33,36 ****
--- 33,40 ----
    utilization for applications that have large numbers of small lists.
  
+ - The dict.update() method now accepts all the same argument forms
+   as the dict() constructor.  This now includes item lists and/or
+   keyword arguments.
+ 
  - Support for arbitrary objects supporting the read-only buffer
    interface as the co_code field of code objects (something that was




More information about the Python-checkins mailing list