]> granicus.if.org Git - python/commitdiff
News about dict.pop().
authorGuido van Rossum <guido@python.org>
Fri, 12 Apr 2002 19:22:48 +0000 (19:22 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 12 Apr 2002 19:22:48 +0000 (19:22 +0000)
Misc/NEWS

index cd61d0ee62e7780eac9764906462ac5a285dbd88..e4b0bb2bb8ea1acf11d033e5b4e33269575db435 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -6,6 +6,9 @@ Type/class unification and new-style classes
 
 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
   not called.  [SF bug #537450]