def __unmarshall_date()

in blog/account-c-invoice-processing/invoice_processing/schema/com_examplecorp_webstore/newordercreated/marshaller.py [0:0]


    def __unmarshall_date(cls, string):
        try:
            from dateutil.parser import parse
            return parse(string).date()
        except ImportError:
            return string