diff options
author | Larry Hastings <larry@hastings.org> | 2013-09-30 00:13:32 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2013-09-30 00:13:32 (GMT) |
commit | d92af0f1d9087c3526ac470dafec1449404e40f9 (patch) | |
tree | 34352ef08a7b007967c12f7f2db01dfc1c469d46 /Lib/test/test_complex.py | |
parent | e9cbd181a20c667c7eda7c22774696501cfdc0f1 (diff) | |
parent | 5d23e6d54352db7c64d152dbabef798340127ccb (diff) | |
download | cpython-d92af0f1d9087c3526ac470dafec1449404e40f9.zip cpython-d92af0f1d9087c3526ac470dafec1449404e40f9.tar.gz cpython-d92af0f1d9087c3526ac470dafec1449404e40f9.tar.bz2 |
Merge 3.4.0a3 release changes.
Diffstat (limited to 'Lib/test/test_complex.py')
-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) |