diff options
author | Barry Warsaw <barry@python.org> | 2002-03-03 22:46:46 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-03-03 22:46:46 (GMT) |
commit | 5833baa30942076694b88185ccb02ebe1102c926 (patch) | |
tree | 521c4154c5e500a83f85a9192ed47deeb631c9f0 /Lib/email | |
parent | cfeb3b6ab8e213cb3551b101d0566d77f5b47409 (diff) | |
download | cpython-5833baa30942076694b88185ccb02ebe1102c926.zip cpython-5833baa30942076694b88185ccb02ebe1102c926.tar.gz cpython-5833baa30942076694b88185ccb02ebe1102c926.tar.bz2 |
Removed two unused imports. Closes patch #525225.
2.2.1 candidate (but not terribly important).
Diffstat (limited to 'Lib/email')
-rw-r--r-- | Lib/email/Generator.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/email/Generator.py b/Lib/email/Generator.py index e969d00..981e0ff 100644 --- a/Lib/email/Generator.py +++ b/Lib/email/Generator.py @@ -11,10 +11,6 @@ import random from types import ListType, StringType from cStringIO import StringIO -# Intrapackage imports -import Message -import Errors - EMPTYSTRING = '' SEMISPACE = '; ' BAR = '|' |