]> granicus.if.org Git - python/commitdiff
Removing the merge conflict markers.
authorSenthil Kumaran <senthil@uthcode.com>
Thu, 12 Sep 2013 14:06:49 +0000 (07:06 -0700)
committerSenthil Kumaran <senthil@uthcode.com>
Thu, 12 Sep 2013 14:06:49 +0000 (07:06 -0700)
- my previous removal and hg resolve mark had still left them and hooks did not catch it too!

Lib/random.py

index e63e94f065115f04ebd6e78370f716986dc7ee16..4ebc7579884f011f88039e3ae23fc14907d3839f 100644 (file)
@@ -257,16 +257,11 @@ class Random(_random.Random):
     def shuffle(self, x, random=None, int=int):
         """Shuffle list x in place, and return None.
 
-<<<<<<< local
         Optional argument random is a 0-argument function returning a
         random float in [0.0, 1.0); if it is the default None, the
         standard random.random will be used.
-=======
-        Optional arg random is a 0-argument function returning a random
-        float in [0.0, 1.0); by default, the standard random.random.
 
         Do not supply the 'int' argument.
->>>>>>> other
         """
 
         randbelow = self._randbelow