summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_complex.py
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2013-09-30 00:13:32 (GMT)
committerLarry Hastings <larry@hastings.org>2013-09-30 00:13:32 (GMT)
commitd92af0f1d9087c3526ac470dafec1449404e40f9 (patch)
tree34352ef08a7b007967c12f7f2db01dfc1c469d46 /Lib/test/test_complex.py
parente9cbd181a20c667c7eda7c22774696501cfdc0f1 (diff)
parent5d23e6d54352db7c64d152dbabef798340127ccb (diff)
downloadcpython-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.py1
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)