Commit 06a923ed authored by Guido van Rossum's avatar Guido van Rossum

whrandom -> random

parent 294ea161
...@@ -22,8 +22,8 @@ class Security: ...@@ -22,8 +22,8 @@ class Security:
raise IOError, "python keyfile %s: cannot open" % keyfile raise IOError, "python keyfile %s: cannot open" % keyfile
def _generate_challenge(self): def _generate_challenge(self):
import whrandom import random
return whrandom.randint(100, 100000) return random.randint(100, 100000)
def _compare_challenge_response(self, challenge, response): def _compare_challenge_response(self, challenge, response):
return self._encode_challenge(challenge) == response return self._encode_challenge(challenge) == response
......
...@@ -31,7 +31,7 @@ class Markov: ...@@ -31,7 +31,7 @@ class Markov:
return seq return seq
def test(): def test():
import sys, string, whrandom, getopt import sys, string, random, getopt
args = sys.argv[1:] args = sys.argv[1:]
try: try:
opts, args = getopt.getopt(args, '0123456789cdw') opts, args = getopt.getopt(args, '0123456789cdw')
...@@ -59,7 +59,7 @@ def test(): ...@@ -59,7 +59,7 @@ def test():
if o == '-q': debug = 0 if o == '-q': debug = 0
if o == '-w': do_words = 1 if o == '-w': do_words = 1
if not args: args = ['-'] if not args: args = ['-']
m = Markov(histsize, whrandom.choice) m = Markov(histsize, random.choice)
try: try:
for filename in args: for filename in args:
if filename == '-': if filename == '-':
......
...@@ -566,13 +566,13 @@ def _run_one_sort(tid, a, bar, done): ...@@ -566,13 +566,13 @@ def _run_one_sort(tid, a, bar, done):
def test(): def test():
global TID, tid, io, wh, randint, alive global TID, tid, io, wh, randint, alive
import whrandom import random
randint = whrandom.randint randint = random.randint
TID = 0 # thread ID (1, 2, ...) TID = 0 # thread ID (1, 2, ...)
tid = thread.allocate_lock() # for changing TID tid = thread.allocate_lock() # for changing TID
io = thread.allocate_lock() # for printing, and 'alive' io = thread.allocate_lock() # for printing, and 'alive'
wh = thread.allocate_lock() # for calls to whrandom wh = thread.allocate_lock() # for calls to random
alive = [] # IDs of active threads alive = [] # IDs of active threads
NSORTS = 5 NSORTS = 5
......
...@@ -41,12 +41,12 @@ class Electrons: ...@@ -41,12 +41,12 @@ class Electrons:
self.tk.update() self.tk.update()
def random_move(self,n): def random_move(self,n):
import whrandom import random
c = self.canvas c = self.canvas
for i in range(1,n+1): for i in range(1,n+1):
p = self.pieces[i] p = self.pieces[i]
x = whrandom.choice(range(-2,4)) x = random.choice(range(-2,4))
y = whrandom.choice(range(-3,4)) y = random.choice(range(-3,4))
c.move(p, x, y) c.move(p, x, y)
self.tk.update() self.tk.update()
......
...@@ -572,12 +572,12 @@ class FaqWizard: ...@@ -572,12 +572,12 @@ class FaqWizard:
emit(TAIL_RECENT) emit(TAIL_RECENT)
def do_roulette(self): def do_roulette(self):
import whrandom import random
files = self.dir.list() files = self.dir.list()
if not files: if not files:
self.error("No entries.") self.error("No entries.")
return return
file = whrandom.choice(files) file = random.choice(files)
self.prologue(T_ROULETTE) self.prologue(T_ROULETTE)
emit(ROULETTE) emit(ROULETTE)
self.dir.show(file) self.dir.show(file)
......
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