³ņ
ć=Pc           @   sT   d  Z  d d k l Z d d k Td d k Td d k l Z d e f d     YZ d S(   s&   
Provides basic unmarshaller classes.
i’’’’(   t	   getLogger(   t   *(   t   Coret   Basicc           B   s   e  Z d  Z d   Z RS(   s*   
    A object builder (unmarshaller).
    c         C   s   t  |  } t i |  |  S(   sÓ   
        Process an object graph representation of the xml I{node}.
        @param node: An XML tree.
        @type node: L{sax.element.Element}
        @return: A suds object.
        @rtype: L{Object}
        (   t   ContentR   t   process(   t   selft   nodet   content(    (    s&   suds-0.3.7-py2.6.egg/suds/umx/basic.pyR       s    (   t   __name__t
   __module__t   __doc__R   (    (    (    s&   suds-0.3.7-py2.6.egg/suds/umx/basic.pyR      s   N(   R   t   loggingR    t   sudst   suds.umxt   suds.umx.coreR   R   (    (    (    s&   suds-0.3.7-py2.6.egg/suds/umx/basic.pys   <module>   s
   

