diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_complex.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_complex.py b/Lib/test/test_complex.py index 2a85bf4..f80d7ac 100644 --- a/Lib/test/test_complex.py +++ b/Lib/test/test_complex.py @@ -101,7 +101,6 @@ class ComplexTest(unittest.TestCase): # FIXME: The following currently crashes on Alpha # self.assertRaises(OverflowError, pow, 1e200+1j, 1e200+1j) - def test_truediv(self): self.assertAlmostEqual(complex.__truediv__(2+0j, 1+1j), 1-1j) self.assertRaises(ZeroDivisionError, complex.__truediv__, 1+1j, 0+0j) |