Commit 23fac826 authored by Jeremy Hylton's avatar Jeremy Hylton

Reflow long line.

parent 84e337cf
...@@ -280,12 +280,12 @@ class Random(_random.Random): ...@@ -280,12 +280,12 @@ class Random(_random.Random):
# selections (the pool) in a list or previous selections in a # selections (the pool) in a list or previous selections in a
# dictionary. # dictionary.
# When the number of selections is small compared to the population, # When the number of selections is small compared to the
# then tracking selections is efficient, requiring only a small # population, then tracking selections is efficient, requiring
# dictionary and an occasional reselection. For a larger number of # only a small dictionary and an occasional reselection. For
# selections, the pool tracking method is preferred since the list takes # a larger number of selections, the pool tracking method is
# less space than the dictionary and it doesn't suffer from frequent # preferred since the list takes less space than the
# reselections. # dictionary and it doesn't suffer from frequent reselections.
n = len(population) n = len(population)
if not 0 <= k <= n: if not 0 <= k <= n:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment