diff options
author | Barry Warsaw <barry@python.org> | 2002-06-01 06:03:09 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-06-01 06:03:09 (GMT) |
commit | 9d5e4aa4149edb92f6d28c9390d776ae4a1d719a (patch) | |
tree | 256dedc0b8a686188359482a7b7da5bc6b319eaa /Lib/email/__init__.py | |
parent | 2f514a806d28a9324bfe9f33755e3f7223268577 (diff) | |
download | cpython-9d5e4aa4149edb92f6d28c9390d776ae4a1d719a.zip cpython-9d5e4aa4149edb92f6d28c9390d776ae4a1d719a.tar.gz cpython-9d5e4aa4149edb92f6d28c9390d776ae4a1d719a.tar.bz2 |
Bump to version 2.0.5, and also use absolute import paths.
Diffstat (limited to 'Lib/email/__init__.py')
-rw-r--r-- | Lib/email/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/email/__init__.py b/Lib/email/__init__.py index 343e3f9..540f178 100644 --- a/Lib/email/__init__.py +++ b/Lib/email/__init__.py @@ -4,7 +4,7 @@ """A package for parsing, handling, and generating email messages. """ -__version__ = '2.0.4' +__version__ = '2.0.5' __all__ = ['Charset', 'Encoders', @@ -29,8 +29,8 @@ __all__ = ['Charset', # Some convenience routines -from Parser import Parser as _Parser -from Message import Message as _Message +from email.Parser import Parser as _Parser +from email.Message import Message as _Message def message_from_string(s, _class=_Message): return _Parser(_class).parsestr(s) |