From 5b358bbcfc528bd3e00d4e216cca491528ef8b91 Mon Sep 17 00:00:00 2001 From: Joshua Boverhof Date: Sat, 4 Feb 2006 01:24:50 +0000 Subject: [PATCH] ---------------------------------------------------------------------- Modified Files: ZSI/generate/__init__.py -- added a BP message. ZSI/generate/wsdl2python.py ZSI/generate/containers.py -- Changed rpc/enc generation so that a new Struct with pname=None is constructed with the "conventional" typecode. Also moved a lot of "setup" code into "setUp" method. ZSI/wstools/WSDLTools.py -- removed some comments ---------------------------------------------------------------------- --- WSDLTools.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/WSDLTools.py b/WSDLTools.py index f7a15e3..bbfae83 100755 --- a/WSDLTools.py +++ b/WSDLTools.py @@ -944,12 +944,6 @@ class MessageRoleBinding(Element): Element.__init__(self, name, documentation) self.type = type -# def getWSDL(self): -# """Return the WSDL object that contains this MessageRole.""" -# if self.type == 'fault': -# return self.parent().parent().getWSDL() -# return self.parent().getWSDL() - def findBinding(self, kind): for item in self.extensions: if isinstance(item, kind):