summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-11 00:44:27 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-04-11 00:44:27 (GMT)
commit7731dfdaad96c519d80823782ca4c81d09466e8d (patch)
tree1a656b363bd009d9a086fec8053dcd70ceabd40d
parent6902b44406ba2940dd7f34b7ec77e2ea13ff2e66 (diff)
downloadcpython-7731dfdaad96c519d80823782ca4c81d09466e8d.zip
cpython-7731dfdaad96c519d80823782ca4c81d09466e8d.tar.gz
cpython-7731dfdaad96c519d80823782ca4c81d09466e8d.tar.bz2
Huh. This belonged with the last checkin -- no idea why svn
didn't commit it.
-rw-r--r--Lib/test/test_descr.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py
index 57a8f44..84c8b19 100644
--- a/Lib/test/test_descr.py
+++ b/Lib/test/test_descr.py
@@ -1763,7 +1763,6 @@ def specials():
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)