diff options
author | Steven D'Aprano <steve+python@pearwood.info> | 2015-12-01 02:48:48 (GMT) |
---|---|---|
committer | Steven D'Aprano <steve+python@pearwood.info> | 2015-12-01 02:48:48 (GMT) |
commit | c0c00c38adbe1a9a2102239ebcaadb672fd9014b (patch) | |
tree | 3d2e0d4d2de9cb2d5c8a74b28e1e5c887895cd07 /Misc | |
parent | a8d83f5fc99402c8d248242a1c156dabf5aa8168 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |