;
Οβ"Ic               @   s6   d  Z  d g Z d d l m Z Gd   d e  Z d S(   u.   Base class for MIME multipart/* type messages.u   MIMEMultiparti    (   u   MIMEBasec             B   s&   |  Ee  Z d  Z d d d d  Z d S(   u.   Base class for MIME multipart/* type messages.u   mixedc             K   sd   t  j |  d | |  g  |  _ | o" x | D] } |  j |  q- Wn | o |  j |  n d S(   uΘ  Creates a multipart/* type message.

        By default, creates a multipart/mixed message, with proper
        Content-Type and MIME-Version headers.

        _subtype is the subtype of the multipart content type, defaulting to
        `mixed'.

        boundary is the multipart boundary string.  By default it is
        calculated as needed.

        _subparts is a sequence of initial subparts for the payload.  It
        must be an iterable object, such as a list.  You can always
        attach new subparts to the message by using the attach() method.

        Additional parameters for the Content-Type header are taken from the
        keyword arguments (or passed into the _params argument).
        u	   multipartN(   u   MIMEBaseu   __init__u   _payloadu   attachu   set_boundary(   u   selfu   _subtypeu   boundaryu	   _subpartsu   _paramsu   p(    (    u1   /mit/python/lib/python3.0/email/mime/multipart.pyu   __init__   s    	 N(   u   __name__u
   __module__u   __doc__u   Noneu   __init__(   u
   __locals__(    (    u1   /mit/python/lib/python3.0/email/mime/multipart.pyu   MIMEMultipart   s   
N(   u   __doc__u   __all__u   email.mime.baseu   MIMEBaseu   MIMEMultipart(    (    (    u1   /mit/python/lib/python3.0/email/mime/multipart.pyu   <module>   s   	