summaryrefslogtreecommitdiff
path: root/suds/options.py
diff options
context:
space:
mode:
Diffstat (limited to 'suds/options.py')
-rw-r--r--suds/options.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/suds/options.py b/suds/options.py
index 86ea245..dabd770 100644
--- a/suds/options.py
+++ b/suds/options.py
@@ -99,6 +99,11 @@ class Options(Skin):
- default: 0
- B{plugins} - A plugin container.
- type: I{list}
+ - B{nosend} - Create the soap envelope but don't send.
+ When specified, method invocation returns a I{RequestContext}
+ instead of sending it.
+ - type: I{bool}
+ - default: False
"""
def __init__(self, **kwargs):
domain = __name__
@@ -119,5 +124,6 @@ class Options(Skin):
Definition('autoblend', bool, False),
Definition('cachingpolicy', int, 0),
Definition('plugins', (list, tuple), []),
+ Definition('nosend', bool, False),
]
Skin.__init__(self, domain, definitions, kwargs)