From: Jeremy Hylton Date: Mon, 23 Feb 2004 17:27:57 +0000 (+0000) Subject: Reflow long line. X-Git-Tag: v2.4a1~777 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2b55d35850e3e8e0b28aba7878d3f9122a7907ac;p=thirdparty%2FPython%2Fcpython.git Reflow long line. --- diff --git a/Lib/random.py b/Lib/random.py index a2415ae6bd98..58865fc59b97 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -280,12 +280,12 @@ class Random(_random.Random): # selections (the pool) in a list or previous selections in a # dictionary. - # When the number of selections is small compared to the population, - # then tracking selections is efficient, requiring only a small - # dictionary and an occasional reselection. For a larger number of - # selections, the pool tracking method is preferred since the list takes - # less space than the dictionary and it doesn't suffer from frequent - # reselections. + # When the number of selections is small compared to the + # population, then tracking selections is efficient, requiring + # only a small dictionary and an occasional reselection. For + # a larger number of selections, the pool tracking method is + # preferred since the list takes less space than the + # dictionary and it doesn't suffer from frequent reselections. n = len(population) if not 0 <= k <= n: