diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-09-18 03:45:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-18 03:45:05 (GMT) |
commit | 272d0d017aef585acf84bb0af99a90a2a8582b2c (patch) | |
tree | 6304200382cac29520e00d13eacbb18c94623ee4 /Lib/statistics.py | |
parent | b9877cd2cc47b6f3512c171814c4f630286279b9 (diff) | |
download | cpython-272d0d017aef585acf84bb0af99a90a2a8582b2c.zip cpython-272d0d017aef585acf84bb0af99a90a2a8582b2c.tar.gz cpython-272d0d017aef585acf84bb0af99a90a2a8582b2c.tar.bz2 |
bpo-36546: No longer a need to make "data" positional only (GH-16252)
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 70c48d6..d81596e 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. |