diff options
author | Guido van Rossum <guido@python.org> | 1993-12-17 15:25:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-12-17 15:25:27 (GMT) |
commit | 7bc817d5ba917528e8bd07ec461c635291e7b06a (patch) | |
tree | d244fa2c8a15248efe095823be9f5e690a2efe38 /Lib/whrandom.py | |
parent | aa14837bd00c28997dbde4014f8c994b9482def1 (diff) | |
download | cpython-7bc817d5ba917528e8bd07ec461c635291e7b06a.zip cpython-7bc817d5ba917528e8bd07ec461c635291e7b06a.tar.gz cpython-7bc817d5ba917528e8bd07ec461c635291e7b06a.tar.bz2 |
* Mass change: get rid of all init() methods, in favor of __init__()
constructors. There is no backward compatibility. Not everything has
been tested.
* aiff.{py,doc}: deleted in favor of aifc.py (which contains its docs as
comments)
Diffstat (limited to 'Lib/whrandom.py')
-rw-r--r-- | Lib/whrandom.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/whrandom.py b/Lib/whrandom.py index 0a34690..c7881b5 100644 --- a/Lib/whrandom.py +++ b/Lib/whrandom.py @@ -35,7 +35,7 @@ class whrandom: # Without arguments, initialize from current time. # With arguments (x, y, z), initialize from them. # - def init(self, *xyz): + def __init__(self, *xyz): if not xyz: # Initialize from current time import time @@ -47,7 +47,6 @@ class whrandom: # Initialize from arguments (x, y, z) x, y, z = xyz self.seed(x, y, z) - return self # # Set the seed from (x, y, z). # These must be integers in the range [0, 256). @@ -97,7 +96,7 @@ class whrandom: # Initialize from the current time # -_inst = whrandom().init() +_inst = whrandom() seed = _inst.seed random = _inst.random uniform = _inst.uniform |