summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_complex.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-02-20 09:47:55 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-02-20 09:47:55 (GMT)
commita11865b8c6dff87bc18b23cded2ea554dd190bb7 (patch)
treec0d314322c6447786f98e95e54d48ffd8a4be696 /Lib/test/test_complex.py
parentef7d67214a5b9d6a17e09dde0b27666100239f22 (diff)
downloadcpython-a11865b8c6dff87bc18b23cded2ea554dd190bb7.zip
cpython-a11865b8c6dff87bc18b23cded2ea554dd190bb7.tar.gz
cpython-a11865b8c6dff87bc18b23cded2ea554dd190bb7.tar.bz2
Merged revisions 78249 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78249 | ezio.melotti | 2010-02-20 11:40:07 +0200 (Sat, 20 Feb 2010) | 1 line Remove e assertIs definitions and use correct assert* methods. ........
Diffstat (limited to 'Lib/test/test_complex.py')
-rw-r--r--Lib/test/test_complex.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_complex.py b/Lib/test/test_complex.py
index 9341016..a54e820 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