merge
This commit is contained in:
commit
77f6411d96
|
@ -352,7 +352,7 @@ class Random(_random.Random):
|
|||
return [population[_int(random() * total)] for i in range(k)]
|
||||
cum_weights = list(_itertools.accumulate(weights))
|
||||
elif weights is not None:
|
||||
raise TypeError('Cannot specify both weights and cumulative_weights')
|
||||
raise TypeError('Cannot specify both weights and cumulative weights')
|
||||
if len(cum_weights) != len(population):
|
||||
raise ValueError('The number of weights does not match the population')
|
||||
bisect = _bisect.bisect
|
||||
|
|
|
@ -626,7 +626,7 @@ class MersenneTwister_TestBasicOps(TestBasicOps, unittest.TestCase):
|
|||
self.assertEqual((x+stop)%step, 0)
|
||||
|
||||
def test_choices_algorithms(self):
|
||||
# The various ways of specifing weights should produce the same results
|
||||
# The various ways of specifying weights should produce the same results
|
||||
choices = self.gen.choices
|
||||
n = 13132817
|
||||
|
||||
|
|
Loading…
Reference in New Issue