From: Raymond Hettinger Date: Sun, 12 Oct 2003 17:14:11 +0000 (+0000) Subject: Minor fixup. "Random" was listed twice in __all__. X-Git-Tag: v2.4a1~1438 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=411c60234974da975b0b1fbf62e362a31f6e4b3c;p=python Minor fixup. "Random" was listed twice in __all__. --- diff --git a/Lib/random.py b/Lib/random.py index 591686419c..16b667a3af 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -49,8 +49,7 @@ __all__ = ["Random","seed","random","uniform","randint","choice","sample", "randrange","shuffle","normalvariate","lognormvariate", "expovariate","vonmisesvariate","gammavariate", "gauss","betavariate","paretovariate","weibullvariate", - "getstate","setstate","jumpahead", "WichmannHill", "getrandbits", - "Random"] + "getstate","setstate","jumpahead", "WichmannHill", "getrandbits"] NV_MAGICCONST = 4 * _exp(-0.5)/_sqrt(2.0) TWOPI = 2.0*_pi