bpo-40325: Deprecate set object support in random.sample() (GH-19591)

This commit is contained in:
Raymond Hettinger 2020-04-19 00:36:42 -07:00 committed by GitHub
parent 482259d0dc
commit 4fe002045f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 2 deletions

View file

@ -147,7 +147,6 @@ class TestBasicOps:
def test_sample_inputs(self):
# SF bug #801342 -- population can be any iterable defining __len__()
self.gen.sample(set(range(20)), 2)
self.gen.sample(range(20), 2)
self.gen.sample(range(20), 2)
self.gen.sample(str('abcdefghijklmnopqrst'), 2)
@ -156,6 +155,11 @@ class TestBasicOps:
def test_sample_on_dicts(self):
self.assertRaises(TypeError, self.gen.sample, dict.fromkeys('abcdef'), 2)
def test_sample_on_sets(self):
with self.assertWarns(DeprecationWarning):
population = {10, 20, 30, 40, 50, 60, 70}
self.gen.sample(population, k=5)
def test_choices(self):
choices = self.gen.choices
data = ['red', 'green', 'blue', 'yellow']