summaryrefslogtreecommitdiff
path: root/Lib/test/test_statistics.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-36018: Address more reviewer feedback (GH-15733)Raymond Hettinger2019-09-081-20/+15
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-2/+2
* bpo-37798: Test both Python and C versions in test_statistics.py (GH-15453)Dong-hee Na2019-08-241-33/+73
* bpo-37707: Exclude expensive unit tests from PGO task (GH-15009)Neil Schemenauer2019-07-301-0/+2
* bpo-36324: Make internal attributes for statistics.NormalDist() private. (GH-...Raymond Hettinger2019-07-211-15/+17
* bpo-36546: Add more tests and expand docs (#13406)Raymond Hettinger2019-05-181-11/+27
* Fix typo: quaatile to quantile (GH=13001)Xtreak2019-05-021-1/+1
* bpo-36018: Test idempotence. Test two methods against one-another. (GH-13021)Raymond Hettinger2019-04-291-0/+23
* bpo-36546: More tests: type preservation and equal inputs (#13000)Raymond Hettinger2019-04-281-12/+18
* bpo-36546: Add statistics.quantiles() (#12710)Raymond Hettinger2019-04-231-0/+142
* bpo-27181: Add statistics.geometric_mean() (GH-12638)Raymond Hettinger2019-04-071-0/+88
* bpo-36326: Let inspect.getdoc() find docstrings for __slots__ (GH-12498)Raymond Hettinger2019-03-251-1/+1
* bpo-36324: NormalDist() add more tests and update comments (GH-12476)Raymond Hettinger2019-03-201-24/+44
* bpo-36324: Add inv_cdf() to statistics.NormalDist() (GH-12377)Raymond Hettinger2019-03-181-0/+63
* bpo-35892: Fix mode() and add multimode() (#12089)Raymond Hettinger2019-03-121-8/+19
* Refine statistics.NormalDist documentation and improve test coverage (GH-12208)Raymond Hettinger2019-03-061-1/+2
* bpo-36169 : Add overlap() method to statistics.NormalDist (GH-12149)Raymond Hettinger2019-03-061-0/+62
* Add more tests for pdf() and cdf() (GH-12190)Raymond Hettinger2019-03-061-3/+29
* bpo-36018: Add special value tests and make minor tweaks to the docs (GH-12096)Raymond Hettinger2019-02-281-0/+8
* bpo-36018: Add properties for mean and stdev (GH-12022)Raymond Hettinger2019-02-241-0/+6
* bpo-36018: Make __pos__ return a distinct instance of NormDist (GH-12009)Raymond Hettinger2019-02-231-0/+12
* bpo-36018: Add the NormalDist class to the statistics module (GH-11973)Raymond Hettinger2019-02-231-0/+177
* bpo-35904: Add statistics.fmean() (GH-11892)Raymond Hettinger2019-02-211-0/+45
* bpo-30144: Import collections ABC from collections.abc rather than collection...Serhiy Storchaka2017-04-241-2/+3
* Issue #27181 remove geometric_mean and defer for 3.7.Steven D'Aprano2016-10-051-267/+0
* Remove expected failure from test of _product internal function.Steven D'Aprano2016-08-241-2/+2
* Remove support for nth root of negative numbers with odd powers.Steven D'Aprano2016-08-241-24/+5
* Issue #27181: Skip tests known to fail until a fix is foundVictor Stinner2016-08-161-0/+1
* Issue27181 add geometric mean.Steven D'Aprano2016-08-091-0/+285
* Tighten up test of harmonic mean on a single value.Steven D'Aprano2016-08-091-4/+1
* Add harmonic mean and tests.Steven D'Aprano2016-08-091-10/+149
* Backed out changeset af29d89083b3 (closes #25548) (closes #27498)Benjamin Peterson2016-07-131-1/+1
* Issue27139 patch by Julio C Cardoza.Steven D'Aprano2016-07-081-0/+16
* Issue #25548: Showing memory address of class objects in replKushal Das2016-06-041-1/+1
* Issue 26002 and 25974Steven D'Aprano2016-05-051-17/+14
* Issue #25928: Temporarily disable some tests in test_statistics in orderStefan Krah2015-12-291-0/+3
* Issue #25177: Fixed problem 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
* Issue #20478: avoid special casing Counter in statisticsNick Coghlan2014-02-081-0/+8
* Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, andSerhiy Storchaka2013-12-081-0/+3
* Fix suspicious test caseChristian Heimes2013-11-261-2/+2
* Issue #18606: Add the new "statistics" module (PEP 450). ContributedLarry Hastings2013-10-191-0/+1534