summaryrefslogtreecommitdiffstats
path: root/Lib/lib-old/rand.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/lib-old/rand.py')
-rw-r--r--Lib/lib-old/rand.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/Lib/lib-old/rand.py b/Lib/lib-old/rand.py
new file mode 100644
index 0000000..0616483
--- /dev/null
+++ b/Lib/lib-old/rand.py
@@ -0,0 +1,12 @@
+# 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)]