Simple changes by Gerrit Holl - move author acknowledgements out of
docstrings into comments.
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 898dd9f..9389b22 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -3,10 +3,6 @@
 
 Based on RFC 2060.
 
-Author: Piers Lauder <piers@cs.su.oz.au> December 1997.
-
-Authentication code contributed by Donn Cave <donn@u.washington.edu> June 1998.
-
 Public class:		IMAP4
 Public variable:	Debug
 Public functions:	Internaldate2tuple
@@ -15,6 +11,10 @@
 			Time2Internaldate
 """
 
+# Author: Piers Lauder <piers@cs.su.oz.au> December 1997.
+# 
+# Authentication code contributed by Donn Cave <donn@u.washington.edu> June 1998.
+
 __version__ = "2.32"
 
 import binascii, re, socket, string, time, random, sys