Commit a9745611 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Use random instead of whrandom

parent 9a62448d
......@@ -7,7 +7,7 @@ See tabulate() for output format.
import sys
import time
import whrandom
import random
import marshal
import tempfile
import operator
......@@ -23,7 +23,7 @@ def randrange(n):
except IOError:
result = []
for i in range(n):
result.append(whrandom.random())
result.append(random.random())
try:
try:
fp = open(fn, "wb")
......@@ -44,7 +44,7 @@ def randrange(n):
##assert len(result) == n
# Shuffle it a bit...
for i in range(10):
i = whrandom.randint(0, n-1)
i = random.randrange(0, n)
temp = result[:i]
del result[:i]
temp.reverse()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment