cpython: 6f27dbc55f10 (original) (raw)
Mercurial > cpython
changeset 101293:6f27dbc55f10 3.5
Issue 26977, remove unneeded line in pvariance (duplicate call to _ss).
Steven D'Aprano steve+python@pearwood.info | |
---|---|
date | Wed, 11 May 2016 11:50:13 +1000 |
parents | 2b492ea961c1 |
children | 3c75707045f5 87130512ef34 |
files | Lib/statistics.py |
diffstat | 1 files changed, 0 insertions(+), 1 deletions(-)[+] [-] Lib/statistics.py 1 |
line wrap: on
line diff
--- a/Lib/statistics.py +++ b/Lib/statistics.py @@ -601,7 +601,6 @@ def pvariance(data, mu=None): n = len(data) if n < 1: raise StatisticsError('pvariance requires at least one data point')