1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-06-13 19:21:37 +03:00

preparing 2.4.17 release updated and rebuilt the docs fixed a comment

* configure.in: preparing 2.4.17 release
* doc/*: updated and rebuilt the docs
* xpath.c: fixed a comment
* python/libxml.c: fixed a possible reentrancy problem
Daniel
This commit is contained in:
Daniel Veillard
2002-03-08 15:05:20 +00:00
parent ef6c46f805
commit af43f63aaa
46 changed files with 2489 additions and 2241 deletions

View File

@ -1730,8 +1730,13 @@ extern void initlibxsltmod(void);
#endif
void initlibxml2mod(void) {
static int initialized = 0;
PyObject *m;
if (initialized != 0)
return;
m = Py_InitModule("libxml2mod", libxmlMethods);
initialized = 1;
libxml_xmlErrorInitialize();
#ifdef MERGED_MODULES