summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteven D'Aprano <steve+python@pearwood.info>2015-12-01 02:48:48 (GMT)
committerSteven D'Aprano <steve+python@pearwood.info>2015-12-01 02:48:48 (GMT)
commitc0c00c38adbe1a9a2102239ebcaadb672fd9014b (patch)
tree3d2e0d4d2de9cb2d5c8a74b28e1e5c887895cd07 /Misc
parenta8d83f5fc99402c8d248242a1c156dabf5aa8168 (diff)
downloadcpython-c0c00c38adbe1a9a2102239ebcaadb672fd9014b.zip
cpython-c0c00c38adbe1a9a2102239ebcaadb672fd9014b.tar.gz
cpython-c0c00c38adbe1a9a2102239ebcaadb672fd9014b.tar.bz2
Fix for issue #25177 with the mean of very small and very large numbers.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c7a1394..08efa17 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,10 @@ Core and Builtins
Library
-------
+- Issue #25177: Fixed problem with the mean of very small and very large
+ numbers. As a side effect, statistics.mean and statistics.variance should
+ be significantly faster.
+
- Issue #25718: Fixed copying object with state with boolean value is false.
- Issue #10131: Fixed deep copying of minidom documents. Based on patch