summaryrefslogtreecommitdiffstats
path: root/Lib/statistics.py
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-10-28 03:01:02 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-10-28 03:01:02 (GMT)
commit32dcf40af0be40d2c8db08a76bb4a878bf6718d0 (patch)
tree365d1f2681d8c1a5a7db2f54e673b6f5ed091fad /Lib/statistics.py
parentb1f1c5ea35816c6010be5be654342186e221739f (diff)
parentdf2660e430a416eb833123d2cb51647e5dcdf939 (diff)
downloadcpython-32dcf40af0be40d2c8db08a76bb4a878bf6718d0.zip
cpython-32dcf40af0be40d2c8db08a76bb4a878bf6718d0.tar.gz
cpython-32dcf40af0be40d2c8db08a76bb4a878bf6718d0.tar.bz2
Issue #25494: Merge with 3.4
Diffstat (limited to 'Lib/statistics.py')
-rw-r--r--Lib/statistics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/statistics.py b/Lib/statistics.py
index 3972ed2..9203cf1 100644
--- a/Lib/statistics.py
+++ b/Lib/statistics.py
@@ -360,7 +360,7 @@ def median_high(data):
def median_grouped(data, interval=1):
- """"Return the 50th percentile (median) of grouped continuous data.
+ """Return the 50th percentile (median) of grouped continuous data.
>>> median_grouped([1, 2, 2, 3, 4, 4, 4, 4, 4, 5])
3.7