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