summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rwxr-xr-xLib/smtplib.py6
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