summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_richcmp.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-02-20 09:40:07 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-02-20 09:40:07 (GMT)
commite3467d5c960f4ec5f0cca5dfa5b3a0a02a19cfb3 (patch)
tree29b385c56169f4ce3b1dada68bba84d65c3c8552 /Lib/test/test_richcmp.py
parent4cc80ca921b4f6bce11bd7eec8bc6b561aa9f524 (diff)
downloadcpython-e3467d5c960f4ec5f0cca5dfa5b3a0a02a19cfb3.zip
cpython-e3467d5c960f4ec5f0cca5dfa5b3a0a02a19cfb3.tar.gz
cpython-e3467d5c960f4ec5f0cca5dfa5b3a0a02a19cfb3.tar.bz2
Remove e assertIs definitions and use correct assert* methods.
Diffstat (limited to 'Lib/test/test_richcmp.py')
-rw-r--r--Lib/test/test_richcmp.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_richcmp.py b/Lib/test/test_richcmp.py
index cc174d8..82a5a6e 100644
--- a/Lib/test/test_richcmp.py
+++ b/Lib/test/test_richcmp.py
@@ -281,9 +281,6 @@ class DictTest(unittest.TestCase):
class ListTest(unittest.TestCase):
- def assertIs(self, a, b):
- self.assertTrue(a is b)
-
def test_coverage(self):
# exercise all comparisons for lists
x = [42]