summaryrefslogtreecommitdiff
path: root/python/tests/xpath.py
Commit message (Collapse)AuthorAgeFilesLines
* Stop calling xmlMemoryDumpNick Wellnhofer2023-04-301-1/+0
| | | | | | This was used to check for memory leaks but could potentially create a .memdump file. These days, there are better ways to check for memory leaks.
* Use python3 not pythonRoss Burton2022-12-071-1/+1
| | | | | | | | | | | | | As per https://peps.python.org/pep-0394/, the python binary can be one of the following options: - Python 2 - Python 3 - Not exist All of the scripts in libxml2 use 'python', which may not exist. As Python 2 reached EOL on the 1st January 2020, it's safe to move the scripts to use python3 explicitly.
* Use portable python shebangsDavid Seifert2022-04-061-1/+1
| | | | | * In conda or Gentoo Prefix, we don't want to use the system python and instead rely on PATH lookup.
* update all tests for Python3 and Python2Daniel Veillard2013-03-301-7/+7
|
* make sure SAX endDocument is always called as this could result in aDaniel Veillard2002-03-051-0/+8
| | | | | | | | | | | | * parser.c: make sure SAX endDocument is always called as this could result in a Python memory leak otherwise (it's used to decrement ref-counting) * python/generator.py python/libxml.c python/libxml.py python/libxml2-python-api.xml python/libxml2class.txt python/tests/error.py python/tests/xpath.py: implemented the suggestions made by Gary Benson and extended the tests to match it. Daniel
* Changed to the MIT Licence updated the doc accordingly preparing 2.4.14Daniel Veillard2002-02-081-0/+2
| | | | | | | | | | | | | | | | | * Copyright Makefile.am README configure.in libxml.spec.in: Changed to the MIT Licence * doc/FAQ.html doc/catalog.html doc/intro.html doc/xml.html doc/xmlio.html: updated the doc accordingly * include/libxml/xmlwin32version.h configure.in: preparing 2.4.14 release * python/generator.py python/libxml.c python/libxml2-python-api.xml python/libxml2class.txt python/libxml_wrap.h python/types.c: fixed the const xmlChar * wrapper and generator, XPath extension functions now use the context as first argument * python/tests/tstxpath.py python/tests/xpath.py python/tests/xpathext.py: Updated the tests accordingly * tree.c: fixed bug #70067 Daniel
* change a small bit in the way valididy error messages get initializedDaniel Veillard2002-02-031-1/+12
| | | | | | | | | | | * parserInternals.c: change a small bit in the way valididy error messages get initialized * python/TODO python/libxml.c python/libxml2-python-api.xml python/libxml2class.txt python/libxml_wrap.h python/types.c: added some memory debugging to track leaks at the libxml2 level * python/tests/*.py: changed all tests to check for leaks, there is just one left in XPath extension registrations. daniel
* adding error redirections and preformat to a python handler cleanup madeDaniel Veillard2002-02-021-6/+15
| | | | | | | | | * python/Makefile.am python/libxml.c python/libxml2-python-api.xml python/libxml2class.txt: adding error redirections and preformat to a python handler * python/tests/Makefile.am python/tests/*.py: cleanup made all tests self checking Daniel
* added more informations in the libxml2-python package including docs.Daniel Veillard2002-02-021-0/+21
* configure.in libxml.spec.in python/Makefile.am python/TODO python/generator.py python/libxml2class.txt: added more informations in the libxml2-python package including docs. Slightly changed the class hierarchy * python/tests/*: added basic regression tests infrastructure too Daniel