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

This commit is contained in:
Barry Warsaw 2002-06-01 06:03:09 +00:00
parent 2f514a806d
commit 9d5e4aa414
1 changed files with 3 additions and 3 deletions

View File

@ -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)