-í
ë¶<c       sH     d  Z    d k Z  d k l Z  d e i f d „  ƒ  YZ d S(   s/   Class representing text/* type MIME documents.
N(   s   encode_7or8bits   MIMETextc      s)    t  Z d  Z   d d e d „ Z RS(   s0   Class for generating text/* type MIME documents.s   plains   us-asciic    sx    # $ t  i  i |  d | h  | d < & | o | d d j o ' | d 7} n ( |  i | ƒ ) | |  ƒ d S(   s  Create a text/* type MIME document.

        _text is the string for this message object.  If the text does not end
        in a newline, one is added.

        _subtype is the MIME sub content type, defaulting to "plain".

        _charset is the character set parameter added to the Content-Type:
        header.  This defaults to "us-ascii".

        _encoder is a function which will perform the actual encoding for
        transport of the text data.  It takes one argument, which is this
        Text instance.  It should use get_payload() and set_payload() to
        change the payload to the encoded form.  It should also add any
        Content-Transfer-Encoding: or other headers to the message as
        necessary.  The default encoding doesn't actually modify the payload,
        but it does set Content-Transfer-Encoding: to either `7bit' or `8bit'
        as appropriate.
        s   texts   charsetiÿÿÿÿs   
N(   s   MIMEBases   __init__s   selfs   _subtypes   _charsets   _texts   set_payloads   _encoder(   s   selfs   _texts   _subtypes   _charsets   _encoder(    (    s$   /usr/lib/python2.2/email/MIMEText.pys   __init__ s   %(   s   __name__s
   __module__s   __doc__s   encode_7or8bits   __init__(    (    (    s$   /usr/lib/python2.2/email/MIMEText.pys   MIMEText s   (   s   __doc__s   MIMEBases   Encoderss   encode_7or8bits   MIMEText(   s   encode_7or8bits   MIMETexts   MIMEBase(    (    s$   /usr/lib/python2.2/email/MIMEText.pys   ? s   