From 0720177e3d9662d9ea157d3abee4531af16f8877 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 22 Dec 1998 20:37:36 +0000 Subject: [PATCH] Small, and final docstring merge with Dragon's version. --- Lib/smtplib.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Lib/smtplib.py b/Lib/smtplib.py index d955e696cf3..264eafb1570 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -38,10 +38,14 @@ Example: (250, "Somebody OverHere ") >>> s.quit() +Bugs/TODO: + - Exceptions should be classes + ''' import socket -import string, re +import string +import re import rfc822 import types