Staging
v0.5.1
https://github.com/python/cpython
Revision 9e277db76b9578eb89433b81a5300e75e86755a6 authored by Barry Warsaw on 31 July 1996, 22:33:40 UTC, committed by Barry Warsaw on 31 July 1996, 22:33:40 UTC
1 parent c08a949
Raw File
Tip revision: 9e277db76b9578eb89433b81a5300e75e86755a6 authored by Barry Warsaw on 31 July 1996, 22:33:40 UTC
#comment update
Tip revision: 9e277db
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