home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2009 June / maximum-cd-2009-06.iso / DiscContents / digsby_setup.exe / lib / email / mime / text.pyo (.txt) < prev   
Encoding:
Python Compiled Bytecode  |  2009-02-26  |  726 b   |  17 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. __all__ = [
  5.     'MIMEText']
  6. from email.encoders import encode_7or8bit
  7. from email.mime.nonmultipart import MIMENonMultipart
  8.  
  9. class MIMEText(MIMENonMultipart):
  10.     
  11.     def __init__(self, _text, _subtype = 'plain', _charset = 'us-ascii'):
  12.         MIMENonMultipart.__init__(self, 'text', _subtype, **{
  13.             'charset': _charset })
  14.         self.set_payload(_text, _charset)
  15.  
  16.  
  17.