]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Reflow long line.
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 23 Feb 2004 17:27:57 +0000 (17:27 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 23 Feb 2004 17:27:57 +0000 (17:27 +0000)
Lib/random.py

index a2415ae6bd989e43f4b7d8b99bfe107f14f873f9..58865fc59b973284387f439436bc0e93362531cf 100644 (file)
@@ -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: