]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-38881: choices() raises ValueError when all weights are zero (GH-17362)
authorRaymond Hettinger <rhettinger@users.noreply.github.com>
Sat, 23 Nov 2019 10:22:13 +0000 (02:22 -0800)
committerGitHub <noreply@github.com>
Sat, 23 Nov 2019 10:22:13 +0000 (02:22 -0800)
Doc/library/random.rst
Lib/random.py
Lib/test/test_random.py
Misc/NEWS.d/next/Library/2019-11-22-20-03-46.bpo-38881.7HV1Q0.rst [new file with mode: 0644]

index 1bd1856937be5b3e6a36facac32a5d5fa512ad43..933da3f8fcf650d716b57e5c6a421aad36280aea 100644 (file)
@@ -165,8 +165,9 @@ 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).  Weights are
-   assumed to be non-negative.
+   integers, floats, and fractions but excludes decimals).  Behavior is
+   undefined if any weight is negative.  A :exc:`ValueError` is raised if all
+   weights are zero.
 
    For a given seed, the :func:`choices` function with equal weighting
    typically produces a different sequence than repeated calls to
@@ -177,6 +178,9 @@ Functions for sequences
 
    .. versionadded:: 3.6
 
+   .. versionchanged:: 3.9
+      Raises a :exc:`ValueError` if all weights are zero.
+
 
 .. function:: shuffle(x[, random])
 
index be4401c554d7e5205d122984916c44e6b6a86290..e24737d4508a8f761d15cb2237bd89fe2f876adb 100644 (file)
@@ -413,8 +413,10 @@ class Random(_random.Random):
             raise TypeError('Cannot specify both weights and cumulative weights')
         if len(cum_weights) != n:
             raise ValueError('The number of weights does not match the population')
-        bisect = _bisect
         total = cum_weights[-1] + 0.0   # convert to float
+        if total <= 0.0:
+            raise ValueError('Total of weights must be greater than zero')
+        bisect = _bisect
         hi = n - 1
         return [population[bisect(cum_weights, random() * total, 0, hi)]
                 for i in _repeat(None, k)]
index f59c5652b5ddaabcb1ca6314f749ede9fa38cbcf..2c8c8e885452ad1edddfa8bea2eabcb2855c4979 100644 (file)
@@ -241,6 +241,11 @@ class TestBasicOps:
         choices = self.gen.choices
         choices(population=[1, 2], weights=[1e-323, 1e-323], k=5000)
 
+    def test_choices_with_all_zero_weights(self):
+        # See issue #38881
+        with self.assertRaises(ValueError):
+            self.gen.choices('AB', [0.0, 0.0])
+
     def test_gauss(self):
         # Ensure that the seed() method initializes all the hidden state.  In
         # particular, through 2.2.1 it failed to reset a piece of state used
diff --git a/Misc/NEWS.d/next/Library/2019-11-22-20-03-46.bpo-38881.7HV1Q0.rst b/Misc/NEWS.d/next/Library/2019-11-22-20-03-46.bpo-38881.7HV1Q0.rst
new file mode 100644 (file)
index 0000000..9f4a27d
--- /dev/null
@@ -0,0 +1 @@
+random.choices() now raises a ValueError when all the weights are zero.