bpo-36546: Mark first argument as position only (GH-14363) (GH-14364)

This commit is contained in:
Miss Islington (bot) 2019-06-24 20:07:00 -07:00 committed by Raymond Hettinger
parent 5bf3b89dfb
commit 210358b25c
2 changed files with 5 additions and 1 deletions

View file

@ -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.