diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-30 12:02:28 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-30 12:02:28 +0000 |
| commit | 407ce45c3b8ff3cbaafe3551423d09759ea699a6 (patch) | |
| tree | f8762b82681037db9db5ca966bf089b51a2086ce /python/environs | |
| parent | 04c32c9de2acb7bc10303b071fdd064ea0a355be (diff) | |
| download | lasso-407ce45c3b8ff3cbaafe3551423d09759ea699a6.tar.gz lasso-407ce45c3b8ff3cbaafe3551423d09759ea699a6.tar.xz lasso-407ce45c3b8ff3cbaafe3551423d09759ea699a6.zip | |
Update
Diffstat (limited to 'python/environs')
| -rw-r--r-- | python/environs/Makefile.am | 4 | ||||
| -rw-r--r-- | python/environs/py_identity.c | 105 | ||||
| -rw-r--r-- | python/environs/py_identity.h | 7 | ||||
| -rw-r--r-- | python/environs/py_login.c | 6 | ||||
| -rw-r--r-- | python/environs/py_login.h | 2 | ||||
| -rw-r--r-- | python/environs/py_profile.c | 33 | ||||
| -rw-r--r-- | python/environs/py_profile.h | 2 | ||||
| -rw-r--r-- | python/environs/py_register_name_identifier.c | 25 | ||||
| -rw-r--r-- | python/environs/py_register_name_identifier.h | 4 | ||||
| -rw-r--r-- | python/environs/py_session.c | 181 | ||||
| -rw-r--r-- | python/environs/py_session.h | 50 |
11 files changed, 270 insertions, 149 deletions
diff --git a/python/environs/Makefile.am b/python/environs/Makefile.am index 6fa9c00c..4662382d 100644 --- a/python/environs/Makefile.am +++ b/python/environs/Makefile.am @@ -8,12 +8,12 @@ INCLUDES = \ $(NULL) -ENVSOURCES = py_federation_termination.c py_lecp.c py_login.c py_logout.c py_profile_context.c py_register_name_identifier.c py_server.c py_identity.c +ENVSOURCES = py_federation_termination.c py_lecp.c py_login.c py_logout.c py_profile.c py_register_name_identifier.c py_server.c py_session.c py_identity.c if WITH_PYTHON noinst_LIBRARIES = libenvirons.a libenvirons_a_SOURCES = $(ENVSOURCES) endif -EXTRA_DIST = $(ENVSOURCES) py_federation_termination.h py_lecp.h py_login.h py_logout.h py_profile_context.h py_register_name_identifier.h py_server.h py_identity.h +EXTRA_DIST = $(ENVSOURCES) py_federation_termination.h py_lecp.h py_login.h py_logout.h py_profile.h py_register_name_identifier.h py_server.h py_session.h py_identity.h diff --git a/python/environs/py_identity.c b/python/environs/py_identity.c index c9d2a93f..403fa749 100644 --- a/python/environs/py_identity.c +++ b/python/environs/py_identity.c @@ -62,42 +62,6 @@ PyObject *identity_new_from_dump(PyObject *self, PyObject *args) { return (LassoIdentity_wrap(identity)); } -PyObject *identity_add_assertion(PyObject *self, PyObject *args){ - PyObject *identity_obj, *assertion_obj; - gchar *remote_providerID; - - if (CheckArgs(args, "OSO:identity_add_assertion")) { - if(!PyArg_ParseTuple(args, (char *) "OsO:identity_add_assertion", &identity_obj, - &remote_providerID, &assertion_obj)) - return NULL; - } - else return NULL; - - lasso_identity_add_assertion(LassoIdentity_get(identity_obj), remote_providerID, - LASSO_NODE(LassoAssertion_get(assertion_obj))); -/* lasso_identity_add_assertion(LassoIdentity_get(identity_obj), remote_providerID, */ -/* LassoNode_get(assertion_obj)); */ - - Py_INCREF(Py_None); - return (Py_None); -} - -PyObject *identity_destroy(PyObject *self, PyObject *args) { - PyObject *identity_obj; - - if (CheckArgs(args, "O:identity_destroy")) { - if(!PyArg_ParseTuple(args, (char *) "O:identity_destroy", - &identity_obj)) - return NULL; - } - else return NULL; - - lasso_identity_destroy(LassoIdentity_get(identity_obj)); - - Py_INCREF(Py_None); - return (Py_None); -} - PyObject *identity_dump(PyObject *self, PyObject *args) { PyObject *identity_obj; gchar *dump; @@ -112,72 +76,3 @@ PyObject *identity_dump(PyObject *self, PyObject *args) { return (charPtrConst_wrap(dump)); } - -PyObject *identity_get_assertion(PyObject *self, PyObject *args) { - PyObject *identity_obj; - LassoNode *assertion_node; - gchar *remote_providerID; - - if (CheckArgs(args, "OS:identity_get_assertion")) { - if(!PyArg_ParseTuple(args, (char *) "Os:identity_get_assertion", &identity_obj, - &remote_providerID)) - return NULL; - } - else return NULL; - - assertion_node = lasso_identity_get_assertion(LassoIdentity_get(identity_obj), - remote_providerID); - - return (LassoNode_wrap(assertion_node)); -} - -PyObject *identity_get_authentication_method(PyObject *self, PyObject *args) { - PyObject *identity_obj; - gchar *remote_providerID; - gchar *authentication_method; - - if (CheckArgs(args, "Os:identity_get_authentication_method")) { - if(!PyArg_ParseTuple(args, (char *) "Oz:identity_get_authentication_method", - &identity_obj, &remote_providerID)) - return NULL; - } - else return NULL; - - authentication_method = lasso_identity_get_authentication_method(LassoIdentity_get(identity_obj), - remote_providerID); - - return (charPtrConst_wrap(authentication_method)); -} - -PyObject *identity_get_next_assertion_remote_providerID(PyObject *self, PyObject *args) { - PyObject *identity_obj; - gchar *remote_providerID; - - if (CheckArgs(args, "O:identity_get_next_assertion_remote_providerID")) { - if(!PyArg_ParseTuple(args, (char *) "O:identity_get_next_assertion_remote_providerID", - &identity_obj)) - return NULL; - } - else return NULL; - - remote_providerID = lasso_identity_get_next_assertion_remote_providerID(LassoIdentity_get(identity_obj)); - - return (charPtrConst_wrap(remote_providerID)); -} - -PyObject *identity_remove_assertion(PyObject *self, PyObject *args) { - PyObject *identity_obj; - gchar *remote_providerID; - int code; - - if (CheckArgs(args, "OS:identity_remove_assertion")) { - if(!PyArg_ParseTuple(args, (char *) "Os:identity_remove_assertion", &identity_obj, - &remote_providerID)) - return NULL; - } - else return NULL; - - code = lasso_identity_remove_assertion(LassoIdentity_get(identity_obj), remote_providerID); - - return (int_wrap(code)); -} diff --git a/python/environs/py_identity.h b/python/environs/py_identity.h index dbcfe368..ea8c75dc 100644 --- a/python/environs/py_identity.h +++ b/python/environs/py_identity.h @@ -38,13 +38,6 @@ PyObject *LassoIdentity_wrap(LassoIdentity *identity); PyObject *identity_new(PyObject *self, PyObject *args); PyObject *identity_new_from_dump(PyObject *self, PyObject *args); - -PyObject *identity_add_assertion(PyObject *self, PyObject *args); -PyObject *identity_destroy(PyObject *self, PyObject *args); PyObject *identity_dump(PyObject *self, PyObject *args); -PyObject *identity_get_assertion(PyObject *self, PyObject *args); -PyObject *identity_get_authentication_method(PyObject *self, PyObject *args); -PyObject *identity_get_next_assertion_remote_providerID(PyObject *self, PyObject *args); -PyObject *identity_remove_assertion(PyObject *self, PyObject *args); #endif /* __PYLASSO_PY_IDENTITY_H__ */ diff --git a/python/environs/py_login.c b/python/environs/py_login.c index 0be80a5e..7ed92ce7 100644 --- a/python/environs/py_login.c +++ b/python/environs/py_login.c @@ -213,12 +213,12 @@ PyObject *login_build_request_msg(PyObject *self, PyObject *args) { return (int_wrap(ret)); } -PyObject *login_accespt_sso(PyObject *self, PyObject *args) { +PyObject *login_accept_sso(PyObject *self, PyObject *args) { PyObject *login_obj; gint ret; - if (CheckArgs(args, "O:login_accespt_sso")) { - if(!PyArg_ParseTuple(args, (char *) "O:login_accespt_sso", + if (CheckArgs(args, "O:login_accept_sso")) { + if(!PyArg_ParseTuple(args, (char *) "O:login_accept_sso", &login_obj)) return NULL; } diff --git a/python/environs/py_login.h b/python/environs/py_login.h index 7f32d315..a9aa3b38 100644 --- a/python/environs/py_login.h +++ b/python/environs/py_login.h @@ -42,11 +42,11 @@ PyObject *LassoLogin_wrap(LassoLogin *login); PyObject *login_getattr(PyObject *self, PyObject *args); PyObject *login_new(PyObject *self, PyObject *args); PyObject *login_new_from_dump(PyObject *self, PyObject *args); +PyObject *login_accept_sso(PyObject *self, PyObject *args); PyObject *login_build_artifact_msg(PyObject *self, PyObject *args); PyObject *login_build_authn_request_msg(PyObject *self, PyObject *args); PyObject *login_build_authn_response_msg(PyObject *self, PyObject *args); PyObject *login_build_request_msg(PyObject *self, PyObject *args); -PyObject *login_create_user(PyObject *self, PyObject *args); PyObject *login_dump(PyObject *self, PyObject *args); PyObject *login_init_authn_request(PyObject *self, PyObject *args); PyObject *login_init_from_authn_request_msg(PyObject *self, PyObject *args); diff --git a/python/environs/py_profile.c b/python/environs/py_profile.c index ec07b9a6..a2528d78 100644 --- a/python/environs/py_profile.c +++ b/python/environs/py_profile.c @@ -25,7 +25,8 @@ #include "../lassomod.h" #include "py_profile.h" -#include "py_user.h" +#include "py_identity.h" +#include "py_session.h" #include "py_server.h" PyObject *LassoProfile_wrap(LassoProfile *ctx) { @@ -61,40 +62,44 @@ PyObject *profile_get_request_type_from_soap_msg(PyObject *self, PyObject *args) /******************************************************************************/ PyObject *profile_new(PyObject *self, PyObject *args) { - PyObject *server_obj, *user_obj; + PyObject *server_obj, *identity_obj, *session_obj; LassoProfile *ctx; - LassoUser *user = NULL; + LassoIdentity *identity = NULL; + LassoSession *session = NULL; - if (CheckArgs(args, "Oo:profile_new")) { - if(!PyArg_ParseTuple(args, (char *) "O|O:profile_new", - &server_obj, &user_obj)) + if (CheckArgs(args, "Ooo:profile_new")) { + if(!PyArg_ParseTuple(args, (char *) "O|OO:profile_new", + &server_obj, &identity_obj, &session_obj)) return NULL; } else return NULL; - if (user_obj != Py_None) { - user = LassoUser_get(user_obj); + if (identity_obj != Py_None) { + identity = LassoIdentity_get(identity_obj); + } + if (session_obj != Py_None) { + session = LassoSession_get(session_obj); } ctx = lasso_profile_new(LassoServer_get(server_obj), - user); + identity, session); return (LassoProfile_wrap(ctx)); } -PyObject *profile_set_user_from_dump(PyObject *self, PyObject *args) { +PyObject *profile_set_identity_from_dump(PyObject *self, PyObject *args) { PyObject *ctx_obj; gchar *dump; gint ret; - if (CheckArgs(args, "OS:profile_set_user_from_dump")) { - if(!PyArg_ParseTuple(args, (char *) "Os:profile_set_user_from_dump", + if (CheckArgs(args, "OS:profile_set_identity_from_dump")) { + if(!PyArg_ParseTuple(args, (char *) "Os:profile_set_identity_from_dump", &ctx_obj, &dump)) return NULL; } else return NULL; - ret = lasso_profile_set_user_from_dump(LassoProfile_get(ctx_obj), - dump); + ret = lasso_profile_set_identity_from_dump(LassoProfile_get(ctx_obj), + dump); return(int_wrap(ret)); } diff --git a/python/environs/py_profile.h b/python/environs/py_profile.h index 7e985dd2..c71142b5 100644 --- a/python/environs/py_profile.h +++ b/python/environs/py_profile.h @@ -39,7 +39,7 @@ PyObject *LassoProfile_wrap(LassoProfile *ctx); PyObject *profile_get_request_type_from_soap_msg(PyObject *self, PyObject *args); PyObject *profile_new(PyObject *self, PyObject *args); -PyObject *profile_set_user_from_dump(PyObject *self, PyObject *args); +PyObject *profile_set_identity_from_dump(PyObject *self, PyObject *args); #endif /* __PYLASSO_PY_PROFILE_H__ */ diff --git a/python/environs/py_register_name_identifier.c b/python/environs/py_register_name_identifier.c index fa25924d..aa90f1ad 100644 --- a/python/environs/py_register_name_identifier.c +++ b/python/environs/py_register_name_identifier.c @@ -55,16 +55,16 @@ PyObject *register_name_identifier_getattr(PyObject *self, PyObject *args) { register_name_identifier = LassoRegisterNameIdentifier_get(register_name_identifier_obj); if (!strcmp(attr, "__members__")) - return Py_BuildValue("[ssss]", "user", "msg_url", "msg_body", + return Py_BuildValue("[ssss]", "identity", "msg_url", "msg_body", "msg_relayState"); - if (!strcmp(attr, "user")) - return (LassoUser_wrap(LASSO_PROFILE_CONTEXT(register_name_identifier)->user)); + if (!strcmp(attr, "identity")) + return (LassoIdentity_wrap(LASSO_PROFILE(register_name_identifier)->identity)); if (!strcmp(attr, "msg_url")) - return (charPtrConst_wrap(LASSO_PROFILE_CONTEXT(register_name_identifier)->msg_url)); + return (charPtrConst_wrap(LASSO_PROFILE(register_name_identifier)->msg_url)); if (!strcmp(attr, "msg_body")) - return (charPtrConst_wrap(LASSO_PROFILE_CONTEXT(register_name_identifier)->msg_body)); + return (charPtrConst_wrap(LASSO_PROFILE(register_name_identifier)->msg_body)); if (!strcmp(attr, "msg_relayState")) - return (charPtrConst_wrap(LASSO_PROFILE_CONTEXT(register_name_identifier)->msg_relayState)); + return (charPtrConst_wrap(LASSO_PROFILE(register_name_identifier)->msg_relayState)); Py_INCREF(Py_None); return (Py_None); @@ -155,21 +155,18 @@ PyObject *register_name_identifier_init_request(PyObject *self, PyObject *args) return(int_wrap(codeError)); } -PyObject *register_name_identifier_process_request_msg(PyObject *self, PyObject *args) { +PyObject *register_name_identifier_process_request(PyObject *self, PyObject *args) { PyObject *register_name_identifier_obj; - gchar *request_msg; - gint request_method; gint codeError; - if (CheckArgs(args, "OSI:register_name_identifier_process_request_msg")) { - if(!PyArg_ParseTuple(args, (char *) "Osi:register_name_identifier_process_request_msg", - ®ister_name_identifier_obj, &request_msg, &request_method)) + if (CheckArgs(args, "O:register_name_identifier_process_request")) { + if(!PyArg_ParseTuple(args, (char *) "O:register_name_identifier_process_request", + ®ister_name_identifier_obj)) return NULL; } else return NULL; - codeError = lasso_register_name_identifier_process_request_msg(LassoRegisterNameIdentifier_get(register_name_identifier_obj), - request_msg, request_method); + codeError = lasso_register_name_identifier_process_request(LassoRegisterNameIdentifier_get(register_name_identifier_obj)); return(int_wrap(codeError)); } diff --git a/python/environs/py_register_name_identifier.h b/python/environs/py_register_name_identifier.h index 992b0c11..eb1a6490 100644 --- a/python/environs/py_register_name_identifier.h +++ b/python/environs/py_register_name_identifier.h @@ -30,7 +30,7 @@ #include <lasso/environs/register_name_identifier.h> #include "py_server.h" -#include "py_user.h" +#include "py_identity.h" typedef struct { PyObject_HEAD @@ -47,7 +47,7 @@ PyObject *register_name_identifier_build_response_msg(PyObject *self, PyObject * PyObject *register_name_identifier_destroy(PyObject *self, PyObject *args); PyObject *register_name_identifier_init_request(PyObject *self, PyObject *args); PyObject *register_name_identifier_new(PyObject *self, PyObject *args); -PyObject *register_name_identifier_process_request_msg(PyObject *self, PyObject *args); +PyObject *register_name_identifier_process_request(PyObject *self, PyObject *args); PyObject *register_name_identifier_process_response_msg(PyObject *self, PyObject *args); #endif /* __PYLASSO_PY_REGISTER_NAME_IDENTIFIER_H__ */ diff --git a/python/environs/py_session.c b/python/environs/py_session.c new file mode 100644 index 00000000..cbe396ae --- /dev/null +++ b/python/environs/py_session.c @@ -0,0 +1,181 @@ +/* $Id$ + * + * PyLasso -- Python bindings for Lasso library + * + * Copyright (C) 2004 Entr'ouvert + * http://lasso.entrouvert.org + * + * Authors: Nicolas Clapies <nclapies@entrouvert.com> + * Valery Febvre <vfebvre@easter-eggs.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include "../lassomod.h" + +#include "py_session.h" +#include "../xml/py_xml.h" + +PyObject *LassoSession_wrap(LassoSession *session) { + PyObject *ret; + + if (session == NULL) { + Py_INCREF(Py_None); + return (Py_None); + } + ret = PyCObject_FromVoidPtrAndDesc((void *) session, + (char *) "LassoSession *", NULL); + return (ret); +} + +/******************************************************************************/ + +PyObject *session_new(PyObject *self, PyObject *args) { + return (LassoSession_wrap(lasso_session_new())); +} + +PyObject *session_new_from_dump(PyObject *self, PyObject *args) { + LassoSession *session; + gchar *dump; + + if (CheckArgs(args, "S:session_new_from_dump")) { + if(!PyArg_ParseTuple(args, (char *) "s:session_new_from_dump", &dump)) + return NULL; + } + else return NULL; + + session = lasso_session_new_from_dump(dump); + + return (LassoSession_wrap(session)); +} + +PyObject *session_add_assertion(PyObject *self, PyObject *args){ + PyObject *session_obj, *assertion_obj; + gchar *remote_providerID; + + if (CheckArgs(args, "OSO:session_add_assertion")) { + if(!PyArg_ParseTuple(args, (char *) "OsO:session_add_assertion", &session_obj, + &remote_providerID, &assertion_obj)) + return NULL; + } + else return NULL; + + lasso_session_add_assertion(LassoSession_get(session_obj), remote_providerID, + LassoNode_get(assertion_obj)); + + Py_INCREF(Py_None); + return (Py_None); +} + +PyObject *session_destroy(PyObject *self, PyObject *args) { + PyObject *session_obj; + + if (CheckArgs(args, "O:session_destroy")) { + if(!PyArg_ParseTuple(args, (char *) "O:session_destroy", + &session_obj)) + return NULL; + } + else return NULL; + + lasso_session_destroy(LassoSession_get(session_obj)); + + Py_INCREF(Py_None); + return (Py_None); +} + +PyObject *session_dump(PyObject *self, PyObject *args) { + PyObject *session_obj; + gchar *dump; + + if (CheckArgs(args, "O:session_dump")) { + if(!PyArg_ParseTuple(args, (char *) "O:session_dump", &session_obj)) + return NULL; + } + else return NULL; + + dump = lasso_session_dump(LassoSession_get(session_obj)); + + return (charPtrConst_wrap(dump)); +} + +PyObject *session_get_assertion(PyObject *self, PyObject *args) { + PyObject *session_obj; + LassoNode *assertion_node; + gchar *remote_providerID; + + if (CheckArgs(args, "OS:session_get_assertion")) { + if(!PyArg_ParseTuple(args, (char *) "Os:session_get_assertion", &session_obj, + &remote_providerID)) + return NULL; + } + else return NULL; + + assertion_node = lasso_session_get_assertion(LassoSession_get(session_obj), + remote_providerID); + + return (LassoNode_wrap(assertion_node)); +} + +PyObject *session_get_authentication_method(PyObject *self, PyObject *args) { + PyObject *session_obj; + gchar *remote_providerID; + gchar *authentication_method; + + if (CheckArgs(args, "Os:session_get_authentication_method")) { + if(!PyArg_ParseTuple(args, (char *) "Oz:session_get_authentication_method", + &session_obj, &remote_providerID)) + return NULL; + } + else return NULL; + + authentication_method = lasso_session_get_authentication_method(LassoSession_get(session_obj), + remote_providerID); + + return (charPtrConst_wrap(authentication_method)); +} + +PyObject *session_get_next_assertion_remote_providerID(PyObject *self, PyObject *args) { + PyObject *session_obj; + gchar *remote_providerID; + + if (CheckArgs(args, "O:session_get_next_assertion_remote_providerID")) { + if(!PyArg_ParseTuple(args, (char *) "O:session_get_next_assertion_remote_providerID", + &session_obj)) + return NULL; + } + else return NULL; + + remote_providerID = lasso_session_get_next_assertion_remote_providerID(LassoSession_get(session_obj)); + + return (charPtrConst_wrap(remote_providerID)); +} + +PyObject *session_remove_assertion(PyObject *self, PyObject *args) { + PyObject *session_obj; + gchar *remote_providerID; + int code; + + if (CheckArgs(args, "OS:session_remove_assertion")) { + if(!PyArg_ParseTuple(args, (char *) "Os:session_remove_assertion", &session_obj, + &remote_providerID)) + return NULL; + } + else return NULL; + + code = lasso_session_remove_assertion(LassoSession_get(session_obj), + remote_providerID); + + return (int_wrap(code)); +} diff --git a/python/environs/py_session.h b/python/environs/py_session.h new file mode 100644 index 00000000..9e823fd6 --- /dev/null +++ b/python/environs/py_session.h @@ -0,0 +1,50 @@ +/* $Id$ + * + * PyLasso -- Python bindings for Lasso library + * + * Copyright (C) 2004 Entr'ouvert + * http://lasso.entrouvert.org + * + * Authors: Nicolas Clapies <nclapies@entrouvert.com> + * Valery Febvre <vfebvre@easter-eggs.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#ifndef __PYLASSO_PY_USER_H__ +#define __PYLASSO_PY_USER_H__ + +#include <lasso/environs/session.h> + +typedef struct { + PyObject_HEAD + LassoSession *obj; +} LassoSession_object; + +#define LassoSession_get(v) (((v) == Py_None) ? NULL : (((LassoSession_object *)(PyObject_GetAttr(v, PyString_FromString("_o"))))->obj)) +PyObject *LassoSession_wrap(LassoSession *session); + +PyObject *session_new(PyObject *self, PyObject *args); +PyObject *session_new_from_dump(PyObject *self, PyObject *args); + +PyObject *session_add_assertion(PyObject *self, PyObject *args); +PyObject *session_destroy(PyObject *self, PyObject *args); +PyObject *session_dump(PyObject *self, PyObject *args); +PyObject *session_get_assertion(PyObject *self, PyObject *args); +PyObject *session_get_authentication_method(PyObject *self, PyObject *args); +PyObject *session_get_next_assertion_remote_providerID(PyObject *self, PyObject *args); +PyObject *session_remove_assertion(PyObject *self, PyObject *args); + +#endif /* __PYLASSO_PY_SESSION_H__ */ |
