diff options
author | Benjamin Peterson <benjamin@python.org> | 2018-09-12 13:51:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 13:51:18 (GMT) |
commit | 865c17fb28f8c3275fd94da6ee4ac51472ec874a (patch) | |
tree | b66adfd7ef7d535b923e4d8eabd2475b2acbdbcc /Lib/test/test_cmath.py | |
parent | 7f0d59f3a83cf1a98398b8e5bdfb97c7a71216bd (diff) | |
download | cpython-865c17fb28f8c3275fd94da6ee4ac51472ec874a.zip cpython-865c17fb28f8c3275fd94da6ee4ac51472ec874a.tar.gz cpython-865c17fb28f8c3275fd94da6ee4ac51472ec874a.tar.bz2 |
closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206)
Diffstat (limited to 'Lib/test/test_cmath.py')
-rw-r--r-- | Lib/test/test_cmath.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_cmath.py b/Lib/test/test_cmath.py index 0451fb0..43a074b 100644 --- a/Lib/test/test_cmath.py +++ b/Lib/test/test_cmath.py @@ -577,8 +577,6 @@ class CMathTests(unittest.TestCase): self.assertTrue(cmath.isinf(complex(INF, NAN))) @requires_IEEE_754 - @unittest.skipIf(sysconfig.get_config_var('TANH_PRESERVES_ZERO_SIGN') == 0, - "system tanh() function doesn't copy the sign") def testTanhSign(self): for z in complex_zeros: self.assertComplexIdentical(cmath.tanh(z), z) |