Commit 9d5e4aa4 authored by Barry Warsaw's avatar Barry Warsaw

Bump to version 2.0.5, and also use absolute import paths.

parent 2f514a80
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"""A package for parsing, handling, and generating email messages. """A package for parsing, handling, and generating email messages.
""" """
__version__ = '2.0.4' __version__ = '2.0.5'
__all__ = ['Charset', __all__ = ['Charset',
'Encoders', 'Encoders',
...@@ -29,8 +29,8 @@ __all__ = ['Charset', ...@@ -29,8 +29,8 @@ __all__ = ['Charset',
# Some convenience routines # Some convenience routines
from Parser import Parser as _Parser from email.Parser import Parser as _Parser
from Message import Message as _Message from email.Message import Message as _Message
def message_from_string(s, _class=_Message): def message_from_string(s, _class=_Message):
return _Parser(_class).parsestr(s) return _Parser(_class).parsestr(s)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment