summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2012-08-24 19:26:23 (GMT)
committerMark Dickinson <mdickinson@enthought.com>2012-08-24 19:26:23 (GMT)
commitc63be46b23cbf4c171f61ad8884fcaa0aa72dec3 (patch)
tree0ecb7a066975be7ec51a18aa6d462d001dff126b
parent088cec3ab70f83564d14a43f802e01d63a5fc905 (diff)
downloadcpython-c63be46b23cbf4c171f61ad8884fcaa0aa72dec3.zip
cpython-c63be46b23cbf4c171f61ad8884fcaa0aa72dec3.tar.gz
cpython-c63be46b23cbf4c171f61ad8884fcaa0aa72dec3.tar.bz2
Remove overeager test (don't depend on the sign of a nan; cf. issue #14521)
-rw-r--r--Lib/test/test_decimal.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py
index 6cc3327..3e184ef 100644
--- a/Lib/test/test_decimal.py
+++ b/Lib/test/test_decimal.py
@@ -1454,8 +1454,6 @@ class DecimalUsabilityTest(unittest.TestCase):
for s in ('nan', 'nan1234', '-nan', '-nan2468'):
f = float(Decimal(s))
self.assertTrue(math.isnan(f))
- sign = math.copysign(1.0, f)
- self.assertEqual(sign, -1.0 if s.startswith('-') else 1.0)
def test_snan_to_float(self):
for s in ('snan', '-snan', 'snan1357', '-snan1234'):