summaryrefslogtreecommitdiffstats
path: root/Lib/statistics.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue 26977, remove unneeded line in pvariance (duplicate call to _ss).Steven D'Aprano2016-05-111-1/+0
|
* Fixed issue #25177, problems with the mean of very small and very large numbers.Steven D'Aprano2015-12-011-71/+114
|
* Issue #25494: Merge with 3.4Zachary Ware2015-10-281-1/+1
|\
| * Issue #25494: Remove extra quote from docstring.Zachary Ware2015-10-281-1/+1
| | | | | | | | Patch by John Mark Vandenberg.
* | Issue #22823: Use set literals instead of creating a set from a listRaymond Hettinger2014-11-091-2/+2
|/
* Close #20536: correctly handle Decimal exponents in statisticsNick Coghlan2014-02-081-1/+5
|
* Close #20481: Disallow mixed type input in statisticsNick Coghlan2014-02-081-42/+25
| | | | | | | The most appropriate coercion rules are not yet clear, so simply disallowing mixed type input for 3.4. (Committed on Steven's behalf)
* Issue #20478: avoid special casing Counter in statisticsNick Coghlan2014-02-081-3/+1
| | | | | | | | | Passing Counter objects to the Counter constructor is special cased, going through iter() firsts ensures they are handled the same way as any other iterable. (Committing on Steven's behalf as I don't believe his SSH key is registered yet)
* remove unused imports from statistics moduleChristian Heimes2013-10-251-2/+0
|
* Issue #18606: Add the new "statistics" module (PEP 450). ContributedLarry Hastings2013-10-191-0/+612
by Steven D'Aprano.