From ff20e42c0e7ba728b269e4bd7313d2c2ab91eff1 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Fri, 23 Nov 2007 23:44:33 -0800 Subject: [PATCH] find ET where I put it... make it support long's.. [git-p4: depot-paths = "//depot/": change = 1103] --- soap_lite.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/soap_lite.py b/soap_lite.py index b521c1d..d5ac1c3 100644 --- a/soap_lite.py +++ b/soap_lite.py @@ -11,7 +11,7 @@ inspired by ElementSOAP.py """ -from coherence.extern.et import ET +from et import ET NS_SOAP_ENV = "{http://schemas.xmlsoap.org/soap/envelope/}" NS_SOAP_ENC = "{http://schemas.xmlsoap.org/soap/encoding/}" @@ -84,6 +84,7 @@ def build_soap_call(method, arguments, is_response=False, type_map = {str: 'xsd:string', unicode: 'xsd:string', int: 'xsd:int', + long: 'xsd:int', float: 'xsd:float', bool: 'xsd:boolean'}