diff options
Diffstat (limited to 'python/libxslt.c')
-rw-r--r-- | python/libxslt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/python/libxslt.c b/python/libxslt.c index 6a4f1c39..8dd6c788 100644 --- a/python/libxslt.c +++ b/python/libxslt.c @@ -356,15 +356,15 @@ libxslt_xsltRegisterExtModuleElement(PyObject *self ATTRIBUTE_UNUSED, PyObject *pyobj_element_f; PyObject *pyobj_precomp_f; -#ifdef DEBUG_EXTENSIONS - printf("libxslt_xsltRegisterExtModuleElement called\n", - name, ns_uri); -#endif - if (!PyArg_ParseTuple(args, (char *)"szOO:registerExtModuleElement", &name, &ns_uri, &pyobj_precomp_f, &pyobj_element_f)) return(NULL); +#ifdef DEBUG_EXTENSIONS + printf("libxslt_xsltRegisterExtModuleElement called: %s %s\n", + name, ns_uri); +#endif + if ((name == NULL) || (pyobj_element_f == NULL) || (pyobj_precomp_f == NULL)) { py_retval = libxml_intWrap(-1); return(py_retval); |