summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteven D'Aprano <steve+python@pearwood.info>2015-12-01 06:04:32 (GMT)
committerSteven D'Aprano <steve+python@pearwood.info>2015-12-01 06:04:32 (GMT)
commit40a841bcb9ad7fab87aad030e0f8924689b5aaef (patch)
tree52e52cbd564647c29e8ddf4adf5f798eda1260d2 /Misc
parentee1a0e4b8c5e271ed023ba1c795715695d912194 (diff)
downloadcpython-40a841bcb9ad7fab87aad030e0f8924689b5aaef.zip
cpython-40a841bcb9ad7fab87aad030e0f8924689b5aaef.tar.gz
cpython-40a841bcb9ad7fab87aad030e0f8924689b5aaef.tar.bz2
Fixed issue #25177, problems 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 43769c1..e6a2536 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -20,6 +20,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