diff options
author | Barry Warsaw <barry@python.org> | 1998-12-22 20:37:36 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-12-22 20:37:36 (GMT) |
commit | 0720177e3d9662d9ea157d3abee4531af16f8877 (patch) | |
tree | 8a58128cb5befbef14be92b6c73c36ece7dd85eb /Lib/smtplib.py | |
parent | 5cb48a4c986bffcc773ada754ee9757db2a76e58 (diff) | |
download | cpython-0720177e3d9662d9ea157d3abee4531af16f8877.zip cpython-0720177e3d9662d9ea157d3abee4531af16f8877.tar.gz cpython-0720177e3d9662d9ea157d3abee4531af16f8877.tar.bz2 |
Small, and final docstring merge with Dragon's version.
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index d955e69..264eafb 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -38,10 +38,14 @@ Example: (250, "Somebody OverHere <somebody@here.my.org>") >>> s.quit() +Bugs/TODO: + - Exceptions should be classes + ''' import socket -import string, re +import string +import re import rfc822 import types |