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 / MIMENonMultipart.pyo (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2009-07-20  |  796 b   |  17 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. '''Base class for MIME type messages that are not multipart.'''
  5. from email import Errors
  6. from email import MIMEBase
  7.  
  8. class MIMENonMultipart(MIMEBase.MIMEBase):
  9.     '''Base class for MIME multipart/* type messages.'''
  10.     __pychecker__ = 'unusednames=payload'
  11.     
  12.     def attach(self, payload):
  13.         raise Errors.MultipartConversionError('Cannot attach additional subparts to non-multipart/*')
  14.  
  15.     del __pychecker__
  16.  
  17.