diff options
author | Steven D'Aprano <steve+python@pearwood.info> | 2015-12-01 06:04:32 (GMT) |
---|---|---|
committer | Steven D'Aprano <steve+python@pearwood.info> | 2015-12-01 06:04:32 (GMT) |
commit | 40a841bcb9ad7fab87aad030e0f8924689b5aaef (patch) | |
tree | 52e52cbd564647c29e8ddf4adf5f798eda1260d2 /Misc | |
parent | ee1a0e4b8c5e271ed023ba1c795715695d912194 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |