diff options
author | Ram Rachum <ram@rachum.com> | 2020-09-29 01:32:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 01:32:10 (GMT) |
commit | b0dfc7581697f20385813582de7e92ba6ba0105f (patch) | |
tree | 56cb713f1bf2d302363b133682e5ad4afa1e739e /Lib/test | |
parent | e8acc355d430b45f1c3ff83312e72272262a854f (diff) | |
download | cpython-b0dfc7581697f20385813582de7e92ba6ba0105f.zip cpython-b0dfc7581697f20385813582de7e92ba6ba0105f.tar.gz cpython-b0dfc7581697f20385813582de7e92ba6ba0105f.tar.bz2 |
bpo-41773: Raise exception for non-finite weights in random.choices(). (GH-22441)
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_random.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Lib/test/test_random.py b/Lib/test/test_random.py index a80e71e..0c1fdee 100644 --- a/Lib/test/test_random.py +++ b/Lib/test/test_random.py @@ -324,6 +324,22 @@ class TestBasicOps: with self.assertRaises(ValueError): self.gen.choices('AB', [0.0, 0.0]) + def test_choices_negative_total(self): + with self.assertRaises(ValueError): + self.gen.choices('ABC', [3, -5, 1]) + + def test_choices_infinite_total(self): + with self.assertRaises(ValueError): + self.gen.choices('A', [float('inf')]) + with self.assertRaises(ValueError): + self.gen.choices('AB', [0.0, float('inf')]) + with self.assertRaises(ValueError): + self.gen.choices('AB', [-float('inf'), 123]) + with self.assertRaises(ValueError): + self.gen.choices('AB', [0.0, float('nan')]) + with self.assertRaises(ValueError): + self.gen.choices('AB', [float('-inf'), float('inf')]) + 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 |