diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2008-08-18 12:42:46 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2008-08-18 12:42:46 (GMT) |
commit | f70385a5c3245a9cac9c0546c65bd467a2ac5249 (patch) | |
tree | 307a0d014693cf21650a974fcea7930a78c915b4 | |
parent | 4763f7184e235e4355bfccbf7f7a0d27c6ccf35e (diff) | |
download | cpython-f70385a5c3245a9cac9c0546c65bd467a2ac5249.zip cpython-f70385a5c3245a9cac9c0546c65bd467a2ac5249.tar.gz cpython-f70385a5c3245a9cac9c0546c65bd467a2ac5249.tar.bz2 |
Belated NEWS entry for r65642
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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. |