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

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. __all__ = [
  5.     'MIMEMultipart']
  6. from email.mime.base import MIMEBase
  7.  
  8. class MIMEMultipart(MIMEBase):
  9.     
  10.     def __init__(self, _subtype = 'mixed', boundary = None, _subparts = None, **_params):
  11.         MIMEBase.__init__(self, 'multipart', _subtype, **_params)
  12.         self._payload = []
  13.         if _subparts:
  14.             for p in _subparts:
  15.                 self.attach(p)
  16.             
  17.         
  18.         if boundary:
  19.             self.set_boundary(boundary)
  20.         
  21.  
  22.  
  23.