Skip to content

Commit

Permalink
- debug
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed May 12, 2024
1 parent b051d9c commit c33836e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_complex.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def test_pow_with_small_integer_exponents_issue_117999(self):
r_pro = exp(e*log(z))
self.assertTrue(test or isclose(r_pow, r_pro))
if not cisnan(r_pow):
self.assertEqual(copysign(1, r_pow.real), copysign(1, r_pro.real), msg=f"r_pow={r_pow}, r_pro={r_pro}")
self.assertEqual(copysign(1, r_pow.real), copysign(1, r_pro.real))
self.assertEqual(copysign(1, r_pow.imag), copysign(1, r_pro.imag))

def test_boolcontext(self):
Expand Down

0 comments on commit c33836e

Please sign in to comment.