summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-05-03 14:25:17 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-05-03 14:25:17 +0000
commitfc210ac14ab5f7bf0e20b74e928fd44f316a3623 (patch)
treeec0aa2a33a253d941f5f46c380a2c35bd8affb4c /python
parent241fd7054772ff526eb8ac6fc53cf26211f39d70 (diff)
downloadlasso-fc210ac14ab5f7bf0e20b74e928fd44f316a3623.tar.gz
lasso-fc210ac14ab5f7bf0e20b74e928fd44f316a3623.tar.xz
lasso-fc210ac14ab5f7bf0e20b74e928fd44f316a3623.zip
*** empty log message ***
Diffstat (limited to 'python')
-rw-r--r--python/lasso.py8
-rw-r--r--python/protocols/py_logout_request.c4
-rw-r--r--python/protocols/py_name_identifier_mapping_request.c4
3 files changed, 8 insertions, 8 deletions
diff --git a/python/lasso.py b/python/lasso.py
index c8e8ca27..c15d9e4f 100644
--- a/python/lasso.py
+++ b/python/lasso.py
@@ -299,8 +299,8 @@ class FederationTerminationNotification(LibFederationTerminationNotification):
class LogoutRequest(LibLogoutRequest):
- def __init__(self, providerID, nameIdentifier,
- nameQualifier=None, format=None, _obj=None):
+ def __init__(self, providerID, nameIdentifier, nameQualifier, format,
+ _obj=None):
"""
"""
if _obj != None:
@@ -328,8 +328,8 @@ class LogoutResponse(Node):
class NameIdentifierMappingRequest(LibNameIdentifierMappingRequest):
- def __init__(self, providerID, nameIdentifier,
- nameQualifier=None, format=None, _obj=None):
+ def __init__(self, providerID, nameIdentifier, nameQualifier, format,
+ _obj=None):
"""
"""
if _obj != None:
diff --git a/python/protocols/py_logout_request.c b/python/protocols/py_logout_request.c
index 86e9d282..e6ead2ea 100644
--- a/python/protocols/py_logout_request.c
+++ b/python/protocols/py_logout_request.c
@@ -49,8 +49,8 @@ PyObject *logout_request_new(PyObject *self, PyObject *args) {
LassoNode *request;
- if (CheckArgs(args, "SSss:logout_request_new")) {
- if(!PyArg_ParseTuple(args, (char *) "sszz:logout_request_new",
+ if (CheckArgs(args, "SSSS:logout_request_new")) {
+ if(!PyArg_ParseTuple(args, (char *) "ssss:logout_request_new",
&providerID, &nameIdentifier, &nameQualifier, &format))
return NULL;
}
diff --git a/python/protocols/py_name_identifier_mapping_request.c b/python/protocols/py_name_identifier_mapping_request.c
index bcc02cab..1d287fc8 100644
--- a/python/protocols/py_name_identifier_mapping_request.c
+++ b/python/protocols/py_name_identifier_mapping_request.c
@@ -49,8 +49,8 @@ PyObject *name_identifier_mapping_request_new(PyObject *self, PyObject *args) {
LassoNode *request;
- if (CheckArgs(args, "SSss:name_identifier_mapping_request_new")) {
- if(!PyArg_ParseTuple(args, (char *) "sszz:name_identifier_mapping_request_new",
+ if (CheckArgs(args, "SSSS:name_identifier_mapping_request_new")) {
+ if(!PyArg_ParseTuple(args, (char *) "ssss:name_identifier_mapping_request_new",
&providerID, &nameIdentifier,
&nameQualifier, &format))
return NULL;