home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 May / maximum-cd-2010-05.iso / DiscContents / boxee-0.9.20.10711.exe / system / python / Lib / email / MIMEBase.pyo (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2009-07-20  |  1007 b   |  23 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Base class for MIME specializations.'''
  5. from email import Message
  6.  
  7. class MIMEBase(Message.Message):
  8.     '''Base class for MIME specializations.'''
  9.     
  10.     def __init__(self, _maintype, _subtype, **_params):
  11.         '''This constructor adds a Content-Type: and a MIME-Version: header.
  12.  
  13.         The Content-Type: header is taken from the _maintype and _subtype
  14.         arguments.  Additional parameters for this header are taken from the
  15.         keyword arguments.
  16.         '''
  17.         Message.Message.__init__(self)
  18.         ctype = '%s/%s' % (_maintype, _subtype)
  19.         self.add_header('Content-Type', ctype, **_params)
  20.         self['MIME-Version'] = '1.0'
  21.  
  22.  
  23.