diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2019-12-09 14:36:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-09 14:36:34 (GMT) |
commit | bba873e633f0f1e88ea12fb935cbd58faa77f976 (patch) | |
tree | 5cb3c02fad1450c50e0842c35e75a36a18c0b30d /Misc | |
parent | ab513a38c98695f271e448fe2cb7c5e39eeaaaaf (diff) | |
download | cpython-bba873e633f0f1e88ea12fb935cbd58faa77f976.zip cpython-bba873e633f0f1e88ea12fb935cbd58faa77f976.tar.gz cpython-bba873e633f0f1e88ea12fb935cbd58faa77f976.tar.bz2 |
bpo-38992: avoid fsum test failure from constant-folding (GH-17513)
* Issue 38992: avoid fsum test failure
* Add NEWS entry
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2019-12-08-15-11-06.bpo-38992.cVoHOZ.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-12-08-15-11-06.bpo-38992.cVoHOZ.rst b/Misc/NEWS.d/next/Tests/2019-12-08-15-11-06.bpo-38992.cVoHOZ.rst new file mode 100644 index 0000000..815ae0f --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2019-12-08-15-11-06.bpo-38992.cVoHOZ.rst @@ -0,0 +1 @@ +Fix a test for :func:`math.fsum` that was failing due to constant folding. |