summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bool.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_bool.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_bool.py')
-rw-r--r--Lib/test/test_bool.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py
index b797e0c..e342d7b 100644
--- a/Lib/test/test_bool.py
+++ b/Lib/test/test_bool.py
@@ -7,12 +7,6 @@ import os
class BoolTest(unittest.TestCase):
- def assertIs(self, a, b):
- self.assertTrue(a is b)
-
- def assertIsNot(self, a, b):
- self.assertTrue(a is not b)
-
def test_subclass(self):
try:
class C(bool):