diff options
Diffstat (limited to 'Lib/test/test_complex.py')
-rw-r--r-- | Lib/test/test_complex.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_complex.py b/Lib/test/test_complex.py index 9341016f21..a54e820f9e 100644 --- a/Lib/test/test_complex.py +++ b/Lib/test/test_complex.py @@ -65,9 +65,6 @@ class ComplexTest(unittest.TestCase): self.assertCloseAbs(x.real, y.real, eps) self.assertCloseAbs(x.imag, y.imag, eps) - def assertIs(self, a, b): - self.assertTrue(a is b) - def check_div(self, x, y): """Compute complex z=x*y, and check that z/x==y and z/y==x.""" z = x * y |