From cebb88963ab256f8e33da9310dc05a6d5a865117 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 17 Sep 2019 20:18:33 -0700 Subject: [PATCH] bpo-36546: No longer a need to make "data" positional only --- Lib/statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/statistics.py b/Lib/statistics.py index 70c48d605d1969b..d81596e5d8abcdf 100644 --- a/Lib/statistics.py +++ b/Lib/statistics.py @@ -615,7 +615,7 @@ def multimode(data): # position is that fewer options make for easier choices and that # external packages can be used for anything more advanced. -def quantiles(data, /, *, n=4, method='exclusive'): +def quantiles(data, *, n=4, method='exclusive'): """Divide *data* into *n* continuous intervals with equal probability. Returns a list of (n - 1) cut points separating the intervals.