summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven D'Aprano <steve+python@pearwood.info>2016-05-11 03:01:42 (GMT)
committerSteven D'Aprano <steve+python@pearwood.info>2016-05-11 03:01:42 (GMT)
commit441581a79ff9666380bea83ad26895f0d09b6695 (patch)
treee38371c390a5a29f29e76c1059446744a16ba19c
parent6494449a98e3de829111afa591b4b97fba52a0fd (diff)
downloadcpython-441581a79ff9666380bea83ad26895f0d09b6695.zip
cpython-441581a79ff9666380bea83ad26895f0d09b6695.tar.gz
cpython-441581a79ff9666380bea83ad26895f0d09b6695.tar.bz2
Update NEWS.
-rw-r--r--Misc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cc06868..0ce1956 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -275,6 +275,14 @@ Library
- Issue #26977: Removed unnecessary, and ignored, call to sum of squares helper
in statistics.pvariance.
+- Issue #26002: Use bisect in statistics.median instead of a linear search.
+ Patch by Upendra Kuma.
+
+- Issue #25974: Make use of new Decimal.as_integer_ratio() method in statistics
+ module. Patch by Stefan Krah.
+
+- Issue #26996: Add secrets module as described in PEP 506.
+
- Issue #26881: The modulefinder module now supports extended opcode arguments.
- Issue #23815: Fixed crashes related to directly created instances of types in