summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-09-29 14:50:24 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-09-29 14:50:24 (GMT)
commit3dcdacfe6a698d955866bb3971c687aacc4dd892 (patch)
treed7e314d399377c607818e79a5796263c4b06432d
parent177d89ce90b5cfbe59488dddb3291ef8a1e1ef37 (diff)
parentdb0601f8716cfd035aa0957a63c6ddaf1fc03e93 (diff)
downloadcpython-3dcdacfe6a698d955866bb3971c687aacc4dd892.zip
cpython-3dcdacfe6a698d955866bb3971c687aacc4dd892.tar.gz
cpython-3dcdacfe6a698d955866bb3971c687aacc4dd892.tar.bz2
merge 3.3 (#19116)
-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)