diff options
| author | Emmanuel Raviart <eraviart@entrouvert.com> | 2004-08-27 16:29:55 +0000 |
|---|---|---|
| committer | Emmanuel Raviart <eraviart@entrouvert.com> | 2004-08-27 16:29:55 +0000 |
| commit | 27d48289411090096aff5ffe117c8d212402b1c7 (patch) | |
| tree | e444df46c17a22db8cda5c2e8fd21899c93c2907 /python | |
| parent | ecbb17fb4ce52b378ee92563691f3e3d63b08020 (diff) | |
| download | lasso-27d48289411090096aff5ffe117c8d212402b1c7.tar.gz lasso-27d48289411090096aff5ffe117c8d212402b1c7.tar.xz lasso-27d48289411090096aff5ffe117c8d212402b1c7.zip | |
Added method Logout.reset_session_index in Python high-level binding.
Diffstat (limited to 'python')
| -rw-r--r-- | python/lasso.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/lasso.py b/python/lasso.py index ddc1fdfa..1fcb26a4 100644 --- a/python/lasso.py +++ b/python/lasso.py @@ -642,6 +642,11 @@ class Logout(_ObjectMixin, lassomod.LassoLogout, _ProfileChild): if errorCode: raise newError(errorCode, 'lasso_logout_process_response_msg') + def reset_session_index(self): + errorCode = lassomod.lasso_logout_reset_session_index(self) + if errorCode: + raise newError(errorCode, 'lasso_logout_reset_session_index') + def validate_request(self): errorCode = lassomod.lasso_logout_validate_request(self) if errorCode: |
