Mailing List Archive

python/dist/src/Misc NEWS,1.382,1.383
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv28734

Modified Files:
NEWS
Log Message:
News about dict.pop().


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.382
retrieving revision 1.383
diff -C2 -d -r1.382 -r1.383
*** NEWS 8 Apr 2002 21:28:20 -0000 1.382
--- NEWS 12 Apr 2002 19:22:48 -0000 1.383
***************
*** 7,10 ****
--- 7,13 ----
Core and builtins

+ - Added a new dict method pop(key). This removes and returns the
+ value corresponding to key. [SF patch #539949]
+
- Changed new-style class instantiation so that when C's __new__
method returns something that's not a C instance, its __init__ is