;ò
ßp>c           @   sC   d  Z  d k Z d k l Z d k l Z d e f d „  ƒ  YZ d S(   s/   Class representing text/* type MIME documents.
N(   s   MIMENonMultipart(   s   encode_7or8bits   MIMETextc           B   s    t  Z d  Z d d e d „ Z RS(   s0   Class for generating text/* type MIME documents.s   plains   us-asciic         C   sh   t  i |  d | h  d | < |  i | | ƒ | t j	 o( t	 i
 d t d ƒ |  d =| |  ƒ n d S(   s  Create a text/* type MIME document.

        _text is the string for this message object.

        _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".  Note that as a side-effect, the
        Content-Transfer-Encoding header will also be set.

        The use of the _encoder is deprecated.  The encoding of the payload,
        and the setting of the character set parameter now happens implicitly
        based on the _charset argument.  If _encoder is supplied, then a
        DeprecationWarning is used, and the _encoder functionality may
        override any header settings indicated by _charset.  This is probably
        not what you want.
        s   texts   charsets   _encoder argument is obsolete.i   s   content-transfer-encodingN(   s   MIMENonMultiparts   __init__s   selfs   _subtypes   _charsets   set_payloads   _texts   _encoders   Nones   warningss   warns   DeprecationWarning(   s   selfs   _texts   _subtypes   _charsets   _encoder(    (    s0   /usr/pkg/lib/mailman/pythonlib/email/MIMEText.pys   __init__   s     	
(   s   __name__s
   __module__s   __doc__s   Nones   __init__(    (    (    s0   /usr/pkg/lib/mailman/pythonlib/email/MIMEText.pys   MIMEText   s    (   s   __doc__s   warningss   email.MIMENonMultiparts   MIMENonMultiparts   email.Encoderss   encode_7or8bits   MIMEText(   s   encode_7or8bits   MIMENonMultiparts   MIMETexts   warnings(    (    s0   /usr/pkg/lib/mailman/pythonlib/email/MIMEText.pys   ?   s   	