Relocating file to Lib/lib-old.

This commit is contained in:
Fred Drake 1998-04-09 04:05:43 +00:00
parent 153165ca3d
commit 3217be9395

View file

@ -1,13 +0,0 @@
# Module 'rand'
# Don't use unless you want compatibility with C's rand()!
import whrandom
def srand(seed):
whrandom.seed(seed%256, seed/256%256, seed/65536%256)
def rand():
return int(whrandom.random() * 32768.0) % 32768
def choice(seq):
return seq[rand() % len(seq)]