[Python-checkins] python/dist/src/Lib/email __init__.py,1.7,1.8

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Fri, 31 May 2002 23:03:11 -0700


Update of /cvsroot/python/python/dist/src/Lib/email
In directory usw-pr-cvs1:/tmp/cvs-serv6736/email

Modified Files:
	__init__.py 
Log Message:
Bump to version 2.0.5, and also use absolute import paths.


Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/__init__.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** __init__.py	22 May 2002 01:52:33 -0000	1.7
--- __init__.py	1 Jun 2002 06:03:09 -0000	1.8
***************
*** 5,9 ****
  """
  
! __version__ = '2.0.4'
  
  __all__ = ['Charset',
--- 5,9 ----
  """
  
! __version__ = '2.0.5'
  
  __all__ = ['Charset',
***************
*** 30,35 ****
  
  # Some convenience routines
! from Parser import Parser as _Parser
! from Message import Message as _Message
  
  def message_from_string(s, _class=_Message):
--- 30,35 ----
  
  # Some convenience routines
! from email.Parser import Parser as _Parser
! from email.Message import Message as _Message
  
  def message_from_string(s, _class=_Message):