mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Relocating file to Lib/lib-old.
This commit is contained in:
parent
153165ca3d
commit
3217be9395
1 changed files with 0 additions and 13 deletions
13
Lib/rand.py
13
Lib/rand.py
|
@ -1,13 +0,0 @@
|
|||
# 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)]
|
Loading…
Add table
Add a link
Reference in a new issue