Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
d9d2c8246c238ac95057b082aa64b5db00a398a4
/
.
/
Lib
/
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
)]