]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Belated NEWS entry for r65642
authorNick Coghlan <ncoghlan@gmail.com>
Mon, 18 Aug 2008 12:42:46 +0000 (12:42 +0000)
committerNick Coghlan <ncoghlan@gmail.com>
Mon, 18 Aug 2008 12:42:46 +0000 (12:42 +0000)
Misc/NEWS

index 76459d6a00bab7009c466f98d875922720e3cf8c..919071453b6bbd95915dfbf4bb3153e9d8d55199 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,13 @@ Core and Builtins
 Library
 -------
 
+- Issue #2235: Added Py3k warnings for types which will become unhashable
+  under the stricter __hash__ inheritance rules in 3.0. Several types
+  which did not meet the rules for hash invariants and were already
+  unhashable in 3.0 have now been explicitly flagged as unhashable in
+  2.6 as well (collections.Mapping, collections.Set, unittest.TestSuite,
+  xml.dom.minidom.NamedNodeMap, numbers.Number, UserList.UserList)
+
 - Update __all__ for cookielib, csv, os, urllib2, and weakref to include things
   imported into the module but exposed as part of the module's API.