Dj Gilcrease <digitalxero <at> gmail.com> writes: > > >>> net1 = IPNetwork("10.1.2.3/24") > >>> net2 = IPNetwork("10.1.2.0/24") > >>> print hash(net1) == hash(net2) > False > >>> print net1 == net2 > True
Ouch :-) It is very bad practice for equal objects to hash differently. Differing hashes are supposed to imply non-equal objects, so as to allow the implementation of associative containers with good performance characteristics. Regards Antoine. _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com