diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:50:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-09-29 14:50:24 (GMT) |
commit | 3dcdacfe6a698d955866bb3971c687aacc4dd892 (patch) | |
tree | d7e314d399377c607818e79a5796263c4b06432d /Lib/test/test_complex.py | |
parent | 177d89ce90b5cfbe59488dddb3291ef8a1e1ef37 (diff) | |
parent | db0601f8716cfd035aa0957a63c6ddaf1fc03e93 (diff) | |
download | cpython-3dcdacfe6a698d955866bb3971c687aacc4dd892.zip cpython-3dcdacfe6a698d955866bb3971c687aacc4dd892.tar.gz cpython-3dcdacfe6a698d955866bb3971c687aacc4dd892.tar.bz2 |
merge 3.3 (#19116)
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) |