[Python-checkins] r45247 - python/trunk/Lib/test/test_descr.py

tim.peters python-checkins at python.org
Tue Apr 11 02:44:30 CEST 2006


Author: tim.peters
Date: Tue Apr 11 02:44:27 2006
New Revision: 45247

Modified:
   python/trunk/Lib/test/test_descr.py
Log:
Huh.  This belonged with the last checkin -- no idea why svn
didn't commit it.


Modified: python/trunk/Lib/test/test_descr.py
==============================================================================
--- python/trunk/Lib/test/test_descr.py	(original)
+++ python/trunk/Lib/test/test_descr.py	Tue Apr 11 02:44:27 2006
@@ -1763,7 +1763,6 @@
     c1 = C()
     c2 = C()
     verify(not not c1)
-    vereq(hash(c1), id(c1))
     vereq(cmp(c1, c2), cmp(id(c1), id(c2)))
     vereq(c1, c1)
     verify(c1 != c2)


More information about the Python-checkins mailing list