summaryrefslogtreecommitdiffstats
path: root/Lib/statistics.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-271-2/+1
| | | Make also minor PEP8 coding style fixes on modified imports.
* Issue #27181 remove geometric_mean and defer for 3.7.Steven D'Aprano2016-10-041-268/+1
|
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-1/+1
|
* Remove support for nth root of negative numbers with odd powers.Steven D'Aprano2016-08-241-4/+3
| | | | | | | Although nth roots of negative numbers are real for odd n, the statistics module doesn't make use of this. Remove support for negative roots from the private _nth_root function, which simplifies the test suite.
* Add geometric_mean to __all__Steven D'Aprano2016-08-241-1/+2
|
* Re-licence statistics.py under the standard Python licence.Steven D'Aprano2016-08-231-17/+0
|
* Issue27181 add geometric mean.Steven D'Aprano2016-08-091-0/+267
|
* Add harmonic mean and tests.Steven D'Aprano2016-08-091-4/+62
|
* Backed out changeset af29d89083b3 (closes #25548) (closes #27498)Benjamin Peterson2016-07-141-4/+4
|
* Issue #25548: Showing memory address of class objects in replKushal Das2016-06-041-4/+4
|
* Issue #27076: More doc and comment spelling fixes for 3.6, by Ville SkyttäMartin Panter2016-05-261-2/+2
|
* Issue 26977, remove unneeded line in pvariance (duplicate call to _ss).Steven D'Aprano2016-05-081-1/+0
|
* Issue 26002 and 25974Steven D'Aprano2016-05-041-38/+30
| | | | | patches by Upendra Kumar and Stefan Krah speed up median by using bisect, and general speedup for Decimals using as_integer_ratio
* Issue #25177: Fixed problem 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.