From: Fred Drake Date: Thu, 9 Apr 1998 04:05:43 +0000 (+0000) Subject: Relocating file to Lib/lib-old. X-Git-Tag: v1.5.1~142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3217be939512b4f0c5d2930ff44a51f59e1022cd;p=thirdparty%2FPython%2Fcpython.git Relocating file to Lib/lib-old. --- diff --git a/Lib/rand.py b/Lib/rand.py deleted file mode 100644 index c299d0a9a95d..000000000000 --- 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)]