diff options
Diffstat (limited to 'Lib/statistics.py')
-rw-r--r-- | Lib/statistics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/statistics.py b/Lib/statistics.py index 5be70e5ebf..79b65a2918 100644 --- a/Lib/statistics.py +++ b/Lib/statistics.py @@ -603,7 +603,7 @@ def multimode(data): # options make for easier choices and that external packages can be # used for anything more advanced. -def quantiles(dist, *, n=4, method='exclusive'): +def quantiles(dist, /, *, n=4, method='exclusive'): '''Divide *dist* into *n* continuous intervals with equal probability. Returns a list of (n - 1) cut points separating the intervals. |