From: Zachary Ware Date: Wed, 28 Oct 2015 03:00:41 +0000 (-0500) Subject: Issue #25494: Remove extra quote from docstring. X-Git-Tag: v3.5.1rc1~123^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df2660e430a416eb833123d2cb51647e5dcdf939;p=python Issue #25494: Remove extra quote from docstring. Patch by John Mark Vandenberg. --- diff --git a/Lib/statistics.py b/Lib/statistics.py index 25a26d4aa7..a56f91f27f 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