Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
f0ada4a130c24a5b10b02f3b51ee0b7cd632cb4b
/
.
/
Lib
/
lib-old
/
rand.py
blob: 06164833284faaca8abb6043d8d4e38bbeb92cee [
file
] [
log
] [
blame
]
# Module '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
)]