home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_433 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-08-06  |  680 b   |  17 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. __all__ = [
  5.     'MIMEBase']
  6. from email import message
  7.  
  8. class MIMEBase(message.Message):
  9.     
  10.     def __init__(self, _maintype, _subtype, **_params):
  11.         message.Message.__init__(self)
  12.         ctype = '%s/%s' % (_maintype, _subtype)
  13.         self.add_header('Content-Type', ctype, **_params)
  14.         self['MIME-Version'] = '1.0'
  15.  
  16.  
  17.