summaryrefslogtreecommitdiffstats
path: root/Lib/random.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-10-12 17:14:11 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-10-12 17:14:11 (GMT)
commit411c60234974da975b0b1fbf62e362a31f6e4b3c (patch)
tree1968b169fce641ea3b078566a777dfa6cb36b69c /Lib/random.py
parent5d9ca4ebfdd3a6d921a3bdab9e2f3f8e87cf731c (diff)
downloadcpython-411c60234974da975b0b1fbf62e362a31f6e4b3c.zip
cpython-411c60234974da975b0b1fbf62e362a31f6e4b3c.tar.gz
cpython-411c60234974da975b0b1fbf62e362a31f6e4b3c.tar.bz2
Minor fixup. "Random" was listed twice in __all__.
Diffstat (limited to 'Lib/random.py')
-rw-r--r--Lib/random.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/random.py b/Lib/random.py
index 5916864..16b667a 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