[Python-checkins] python/dist/src/Lib/email __init__.py,1.16,1.17

barry@users.sourceforge.net barry@users.sourceforge.net
Mon, 30 Sep 2002 13:41:35 -0700


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

Modified Files:
	__init__.py 
Log Message:
__all__: Updated


Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/__init__.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** __init__.py	30 Sep 2002 15:23:17 -0000	1.16
--- __init__.py	30 Sep 2002 20:41:33 -0000	1.17
***************
*** 7,30 ****
  __version__ = '2.4'
  
! __all__ = ['Charset',
!            'Encoders',
!            'Errors',
!            'Generator',
!            'Header',
!            'Iterators',
!            'MIMEAudio',
!            'MIMEBase',
!            'MIMEImage',
!            'MIMEMessage',
!            'MIMEText',
!            'Message',
!            'Parser',
!            'Utils',
!            'base64MIME',
!            'quopriMIME',
!            'message_from_string',
!            'message_from_file',
!            ]
! 
  
  try:
--- 7,32 ----
  __version__ = '2.4'
  
! __all__ = [
!     'base64MIME',
!     'Charset',
!     'Encoders',
!     'Errors',
!     'Generator',
!     'Header',
!     'Iterators',
!     'Message',
!     'MIMEAudio',
!     'MIMEBase',
!     'MIMEImage',
!     'MIMEMessage',
!     'MIMEMultipart',
!     'MIMENonMultipart',
!     'MIMEText',
!     'Parser',
!     'quopriMIME',
!     'Utils',
!     'message_from_string',
!     'message_from_file',
!     ]
  
  try: