From 3217be939512b4f0c5d2930ff44a51f59e1022cd Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 9 Apr 1998 04:05:43 +0000 Subject: [PATCH] Relocating file to Lib/lib-old. --- Lib/rand.py | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 Lib/rand.py diff --git a/Lib/rand.py b/Lib/rand.py deleted file mode 100644 index c299d0a9a9..0000000000 --- a/Lib/rand.py +++ /dev/null @@ -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)] -- 2.50.1