1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

added an encoding "special comment" to avoid warning message in python2.3

* python/drv_libxml.py: added an encoding "special comment" to avoid
  warning message in python2.3 (bug 146889)
* Makefile.am, python/Makefile.am, python/tests/Makefile.am: small
  change to make "make tests" a little quieter (MAKEFLAGS+=--silent)
* xpath.c: enhanced to take advantage of current libxslt handling
  of tmpRVT.  Fixes bug 145547.
This commit is contained in:
William M. Brack
2004-07-11 14:41:20 +00:00
parent be3eb2088e
commit e9449c5d29
6 changed files with 29 additions and 5 deletions

View File

@ -69,5 +69,5 @@ else
all:
endif
tests test: all
cd tests && $(MAKE) tests
cd tests && $(MAKE) MAKEFLAGS+=--silent tests

View File

@ -1,3 +1,4 @@
# -*- coding: iso-8859-1 -*-
""" A SAX2 driver for libxml2, on top of it's XmlReader API
USAGE

View File

@ -46,7 +46,7 @@ EXTRA_DIST = $(PYTESTS) $(XMLS)
if WITH_PYTHON
tests: $(PYTESTS)
echo "## running Python regression tests"
@echo "## running Python regression tests"
-@(PYTHONPATH="..:../.libs:$(srcdir)/..:$$PYTHONPATH" ; \
export PYTHONPATH; \
for test in $(PYTESTS) ; \