diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-08-18 11:26:15 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-08-18 11:26:15 (GMT) |
commit | 35fa864840c7ab56acc474b6c035fdc6ae9005a3 (patch) | |
tree | 01f11ea091941088ffacbcc9021d3f6938b3d686 /Lib | |
parent | 8c601b0b850a32c49cf3a939f3641c3d67269d8e (diff) | |
parent | 05d79e9abfac38878298e4381c9166e58488664a (diff) | |
download | cpython-35fa864840c7ab56acc474b6c035fdc6ae9005a3.zip cpython-35fa864840c7ab56acc474b6c035fdc6ae9005a3.tar.gz cpython-35fa864840c7ab56acc474b6c035fdc6ae9005a3.tar.bz2 |
Issue #15477: Merge fix from 3.2
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_cmath.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_cmath.py b/Lib/test/test_cmath.py index 4e93be4..692ea36 100644 --- a/Lib/test/test_cmath.py +++ b/Lib/test/test_cmath.py @@ -519,15 +519,11 @@ class CMathTests(unittest.TestCase): # of zero, then atan and atanh will also have difficulties with # the sign of complex zeros. @requires_IEEE_754 - @unittest.skipIf(sysconfig.get_config_var('LOG1P_DROPS_ZERO_SIGN'), - "system log1p() function doesn't preserve the sign") def testAtanSign(self): for z in complex_zeros: self.assertComplexIdentical(cmath.atan(z), z) @requires_IEEE_754 - @unittest.skipIf(sysconfig.get_config_var('LOG1P_DROPS_ZERO_SIGN'), - "system log1p() function doesn't preserve the sign") def testAtanhSign(self): for z in complex_zeros: self.assertComplexIdentical(cmath.atanh(z), z) |