diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-21 17:06:07 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-08-21 17:06:07 (GMT) |
commit | 4886cc331ff158f8ede74878a436adfad205bd2d (patch) | |
tree | e9473cb0fd8449b2bdfcea9826e5c795e6ba87e2 /BROKEN | |
parent | 79212998a8d46712edcf7c4f3fbaefca05a7b08b (diff) | |
download | cpython-4886cc331ff158f8ede74878a436adfad205bd2d.zip cpython-4886cc331ff158f8ede74878a436adfad205bd2d.tar.gz cpython-4886cc331ff158f8ede74878a436adfad205bd2d.tar.bz2 |
Get rid of most of the rest of coerce (slot is still there for now).
Diffstat (limited to 'BROKEN')
-rw-r--r-- | BROKEN | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -110,3 +110,31 @@ Traceback (most recent call last): File "../Lib/test/test_set.py", line 291, in test_remove self.assert_(self.thetype(self.word) in s) AssertionError + +//////////////////////////////////////////////////////////////////////// +test_compare +//////////////////////////////////////////////////////////////////////// +test test_compare failed -- Traceback (most recent call last): + File "/Users/nnorwitz/build/python/py3k.2/Lib/test/test_compare.py", line 28, in test_comparisons + self.assertEqual(a, b) +AssertionError: 2 != (2+0j) + +//////////////////////////////////////////////////////////////////////// +test_complex +//////////////////////////////////////////////////////////////////////// +====================================================================== +FAIL: test_pow (test.test_complex.ComplexTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/Users/nnorwitz/build/python/py3k.2/Lib/test/test_complex.py", line 130, in test_pow + self.assertEqual(a ** 0j, 1) +AssertionError: (1+0j) != 1 + +====================================================================== +FAIL: test_richcompare (test.test_complex.ComplexTest) +---------------------------------------------------------------------- +Traceback (most recent call last): + File "/Users/nnorwitz/build/python/py3k.2/Lib/test/test_complex.py", line 96, in test_richcompare + self.assertRaises(OverflowError, complex.__eq__, 1+1j, 1L<<10000) +AssertionError: OverflowError not raised + |