bpo-37624: Document weight assumptions for random.choices() (GH-14855)

This commit is contained in:
Raymond Hettinger 2019-07-19 01:56:42 -07:00 committed by GitHub
parent d395209653
commit 8dbe563aa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -160,7 +160,8 @@ Functions for sequences
The *weights* or *cum_weights* can use any numeric type that interoperates
with the :class:`float` values returned by :func:`random` (that includes
integers, floats, and fractions but excludes decimals).
integers, floats, and fractions but excludes decimals). Weights are
assumed to be non-negative.
For a given seed, the :func:`choices` function with equal weighting
typically produces a different sequence than repeated calls to