updated epydocs

This commit is contained in:
jortel 2008-04-29 15:29:59 +00:00
parent 704d13b9cd
commit 7e84b95801
1 changed files with 4 additions and 2 deletions

View File

@ -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():