We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8256c5 commit 460e983Copy full SHA for 460e983
Lib/test/test_cmath.py
@@ -624,6 +624,8 @@ def test_complex_near_zero(self):
624
self.assertIsClose(0.001-0.001j, 0.001+0.001j, abs_tol=2e-03)
625
self.assertIsNotClose(0.001-0.001j, 0.001+0.001j, abs_tol=1e-03)
626
627
+ # TODO: RUSTPYTHON
628
+ @unittest.expectedFailure
629
def test_complex_special(self):
630
self.assertIsNotClose(INF, INF*1j)
631
self.assertIsNotClose(INF*1j, INF)
0 commit comments