diff options
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r-- | Lib/imaplib.py | 8 |
1 files changed, 4 insertions, 4 deletions
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 @@ Public functions: Internaldate2tuple 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 |