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/smtplib.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/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index df8907d..f58d5fc 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -2,14 +2,6 @@ """SMTP/ESMTP client class. -Author: The Dragon De Monsyne <dragondm@integral.org> -ESMTP support, test code and doc fixes added by - Eric S. Raymond <esr@thyrsus.com> -Better RFC 821 compliance (MAIL and RCPT, and CRLF in data) - by Carey Evans <c.evans@clear.net.nz>, for picky mail servers. - -This was modified from the Python 1.5 library HTTP lib. - This should follow RFC 821 (SMTP) and RFC 1869 (ESMTP). Notes: @@ -39,6 +31,14 @@ Example: >>> s.quit() """ +# Author: The Dragon De Monsyne <dragondm@integral.org> +# ESMTP support, test code and doc fixes added by +# Eric S. Raymond <esr@thyrsus.com> +# Better RFC 821 compliance (MAIL and RCPT, and CRLF in data) +# by Carey Evans <c.evans@clear.net.nz>, for picky mail servers. +# +# This was modified from the Python 1.5 library HTTP lib. + import socket import string import re |