Simple changes by Gerrit Holl - move author acknowledgements out of
docstrings into comments.
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 @@
 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 @@
 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.