1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

changed changed sys.path setting from 'append' to 'insert' (patch supplied

* check-relaxng-test-suite.py, check-relaxng-test-suite2.py,
  check-xinclude-test-suite.py, check-xml-test-suite.py,
  check-xsddata-test-suite.py, doc/examples/index.py: changed
  changed sys.path setting from 'append' to 'insert' (patch
  supplied by Malcolm Tredinnick) (bug 153716)
This commit is contained in:
William M. Brack
2004-10-02 22:55:49 +00:00
parent d1757abcb8
commit cb40c222a4
7 changed files with 14 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ import sys
import time
import os
import string
sys.path.append("python")
sys.path.insert(0, "python")
import libxml2
test_nr = 0