summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2016-09-04 08:58:51 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2016-09-04 08:58:51 (GMT)
commit85746542ead2e8994263b893f2d7560beb3bf1ca (patch)
tree40f74847b37137427c92b03b6d1de95aeb03f79b /Misc
parent96f774d8246e91bc30fc440b65f9c7a435462f45 (diff)
downloadcpython-85746542ead2e8994263b893f2d7560beb3bf1ca.zip
cpython-85746542ead2e8994263b893f2d7560beb3bf1ca.tar.gz
cpython-85746542ead2e8994263b893f2d7560beb3bf1ca.tar.bz2
Issue #27953: skip failing math and cmath tests for tan on OS X 10.4.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a713094..0603483 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -135,6 +135,9 @@ Library
Tests
-----
+- Issue #27953: Skip math and cmath tests that fail on OS X 10.4 due to a
+ poor libm implementation of tan.
+
- Issue #26040: Improve test_math and test_cmath coverage and rigour. Patch by
Jeff Allen.