summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_statistics.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed issue #25177, problems with the mean of very small and very large numbers.Steven D'Aprano2015-12-011-48/+315
|
* remove unused importBenjamin Peterson2015-02-251-1/+0
|
* Issue #16056: Rename test method in test_statistics to avoid conflict.Berker Peksag2014-09-241-2/+2
|
* Close #20536: correctly handle Decimal exponents in statisticsNick Coghlan2014-02-081-0/+38
|
* Close #20481: Disallow mixed type input in statisticsNick Coghlan2014-02-081-34/+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-0/+8
| | | | | | | | | 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)
* Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, andSerhiy Storchaka2013-12-081-0/+3
| | | | test_statistics when python is run with -OO.
* Fix suspicious test caseChristian Heimes2013-11-261-2/+2
|
* Issue #18606: Add the new "statistics" module (PEP 450). ContributedLarry Hastings2013-10-191-0/+1534
by Steven D'Aprano.