Simple changes by Gerrit Holl - move author acknowledgements out of

docstrings into comments.
This commit is contained in:
Guido van Rossum 2000-02-28 15:12:25 +00:00
parent ee28c3a5ea
commit 98d9fd3e68
9 changed files with 46 additions and 43 deletions

View file

@ -25,10 +25,6 @@ There is also an interface to create multiple independent
random generators, and to choose from other ranges.
Translated by Guido van Rossum from C source provided by
Adrian Baddeley.
Multi-threading note: the random number generator used here is not
thread-safe; it is possible that nearly simultaneous calls in
@ -37,6 +33,10 @@ have to use a lock around all calls. (I didn't want to slow this
down in the serial case by using a lock here.)
"""
# Translated by Guido van Rossum from C source provided by
# Adrian Baddeley.
class whrandom:
def __init__(self, x = 0, y = 0, z = 0):
"""Initialize an instance.