Ñò
—ã=Pc           @   s0   d  Z  d d k l Z d e f d „  ƒ  YZ d S(   sC   
Provides modules containing classes to support
marshalling (XML).
iÿÿÿÿ(   t   Objectt   Contentc           B   s    e  Z d  Z d d d d „ Z RS(   sí   
    Marshaller Content.
    @ivar tag: The content tag.
    @type tag: str
    @ivar value: The content's value.
    @type value: I{any}
    @ivar type: The (optional) content schema type.
    @type type: L{xsd.sxbase.SchemaObject}
    c         C   s,   t  i |  ƒ | |  _ | |  _ | |  _ d S(   sô   
        @param tag: The content tag.
        @type tag: str
        @param value: The content's value.
        @type value: I{any}
        @param type: The (optional) content schema type.
        @type type: L{xsd.sxbase.SchemaObject}
        N(   R    t   __init__t   tagt   valuet   type(   t   selfR   R   R   (    (    sO   /usr/local/lib/python2.6/dist-packages/suds-0.3.7-py2.6.egg/suds/mx/__init__.pyR   #   s    			N(   t   __name__t
   __module__t   __doc__t   NoneR   (    (    (    sO   /usr/local/lib/python2.6/dist-packages/suds-0.3.7-py2.6.egg/suds/mx/__init__.pyR      s   	N(   R	   t   suds.sudsobjectR    R   (    (    (    sO   /usr/local/lib/python2.6/dist-packages/suds-0.3.7-py2.6.egg/suds/mx/__init__.pyt   <module>   s   