summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2008-04-29 15:29:59 +0000
committerjortel <devnull@localhost>2008-04-29 15:29:59 +0000
commitdccfef00f87f2ac13bb3a2e4d59195b7c85531df (patch)
tree6f56b7f2dea30c71fe14d9b0d4f2f71ecd8ad162
parent85428de0c84dc0b2eb826c4115b065bdf5666b29 (diff)
downloadsuds-dccfef00f87f2ac13bb3a2e4d59195b7c85531df.tar.gz
updated epydocsrelease-0.2
-rw-r--r--suds/serviceproxy.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/suds/serviceproxy.py b/suds/serviceproxy.py
index 4b5e42a..71026a6 100644
--- a/suds/serviceproxy.py
+++ b/suds/serviceproxy.py
@@ -257,7 +257,7 @@ class Client:
"""
Request succeeded, process the reply
@param binding: The binding to be used to process the reply.
- @type binding: L{Binding}
+ @type binding: L{suds.bindings.binding.Binding}
@param method: The service method that was invoked.
@type method: L{Method}
@return: The method result.
@@ -278,7 +278,7 @@ class Client:
"""
Request failed, process reply based on reason
@param binding: The binding to be used to process the reply.
- @type binding: L{Binding}
+ @type binding: L{suds.bindings.binding.Binding}
@param method: The service method that was invoked.
@type method: L{Method}
@param error: The http error message
@@ -300,6 +300,8 @@ class Client:
def get_methods(self):
"""
Get a list of methods provided by this service
+ @return: A list of method descriptions.
+ @rtype: [str,]
"""
list = []
for op in self.wsdl.get_operations():