Simple changes by Gerrit Holl - move author acknowledgements out of
docstrings into comments.
diff --git a/Lib/getpass.py b/Lib/getpass.py
index 19843d7..b81026f 100644
--- a/Lib/getpass.py
+++ b/Lib/getpass.py
@@ -6,10 +6,11 @@
 On Windows, the msvcrt module will be used.
 On the Mac EasyDialogs.AskPassword is used, if available.
 
-Authors: Piers Lauder (original)
-         Guido van Rossum (Windows support and cleanup)
 """
 
+# Authors: Piers Lauder (original)
+#          Guido van Rossum (Windows support and cleanup)
+
 import sys
 
 def unix_getpass(prompt='Password: '):