Staging
v0.5.1
https://github.com/python/cpython
Revision c889b760d762bb21ead88d3870c8be7fb066f6b9 authored by Jack Jansen on 13 February 1995, 12:00:46 UTC, committed by Jack Jansen on 13 February 1995, 12:00:46 UTC
1 parent bd06e96
Raw File
Tip revision: c889b760d762bb21ead88d3870c8be7fb066f6b9 authored by Jack Jansen on 13 February 1995, 12:00:46 UTC
Added RawFSSpec and RawAlias methods which turn their string arguments
Tip revision: c889b76
rand.py
# 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)]
back to top