diff options
author | Guido van Rossum <guido@python.org> | 2000-02-28 15:12:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-02-28 15:12:25 (GMT) |
commit | 98d9fd3e68075ce6fe7642ed8793c1abee69edf6 (patch) | |
tree | e7edc9f6bc97f7543df5b741520cf0f607176b15 /Lib/whrandom.py | |
parent | ee28c3a5eae41a9b349ebbe7c4583d6a36a1984c (diff) | |
download | cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.zip cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.gz cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.bz2 |
Simple changes by Gerrit Holl - move author acknowledgements out of
docstrings into comments.
Diffstat (limited to 'Lib/whrandom.py')
-rw-r--r-- | Lib/whrandom.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/whrandom.py b/Lib/whrandom.py index fd9b1a9..8cc1650 100644 --- a/Lib/whrandom.py +++ b/Lib/whrandom.py @@ -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. |