summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2010-08-24 15:32:31 +0000
committerjortel <devnull@localhost>2010-08-24 15:32:31 +0000
commit2ee83e241c78db8b1a25d5182873470137394ad1 (patch)
treeca80f6ead3a7b61ea0c2e2995f6b476118302712
parent32b874c643e05564385d97948762a1d17160c295 (diff)
downloadsuds-2ee83e241c78db8b1a25d5182873470137394ad1.tar.gz
fix epydocs.
-rw-r--r--suds/plugin.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/suds/plugin.py b/suds/plugin.py
index 4cdb610..058436f 100644
--- a/suds/plugin.py
+++ b/suds/plugin.py
@@ -154,7 +154,7 @@ class MessagePlugin(Plugin):
"""
Suds has sax parsed the received reply.
Provides the plugin with the opportunity to inspect/modify
- the sax parsed DOM tree for the reply.
+ the sax parsed DOM tree for the reply before it is unmarshalled.
@param context: The reply context.
The I{reply} is DOM tree.
@type context: L{MessageContext}
@@ -163,11 +163,11 @@ class MessagePlugin(Plugin):
def unmarshalled(self, context):
"""
- Suds has sax parsed the received reply.
+ Suds has unmarshalled the received reply.
Provides the plugin with the opportunity to inspect/modify
- the unmarshalled reply.
+ the unmarshalled reply object before it is returned.
@param context: The reply context.
- The I{reply} is DOM tree.
+ The I{reply} is unmarshalled suds object.
@type context: L{MessageContext}
"""
pass