diff options
Diffstat (limited to 'Lib/test/test_bool.py')
-rw-r--r-- | Lib/test/test_bool.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py index 9784f083f6..a62ff8eff6 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): |