summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-10-28 03:00:41 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-10-28 03:00:41 (GMT)
commitdf2660e430a416eb833123d2cb51647e5dcdf939 (patch)
treeabac980a2a4927578b8276c3c249ad105f884708
parent4c973e9a4b1ffbbe64051267b248cd389fd0636f (diff)
downloadcpython-df2660e430a416eb833123d2cb51647e5dcdf939.zip
cpython-df2660e430a416eb833123d2cb51647e5dcdf939.tar.gz
cpython-df2660e430a416eb833123d2cb51647e5dcdf939.tar.bz2
Issue #25494: Remove extra quote from docstring.
Patch by John Mark Vandenberg.
-rw-r--r--Lib/statistics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/statistics.py b/Lib/statistics.py
index 25a26d4..a56f91f 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