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)
diff --git a/ChangeLog b/ChangeLog
index 6889b65..ae61093 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Sat Oct  2 15:46:37 PDT 2004 William Brack <wbrack@mmm.com.hk>
+
+	* 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)
+
 Sat Oct  2 15:03:14 PDT 2004 William Brack <wbrack@mmm.com.hk>
 
 	* include/libxml/parserInternals.h: added two new macros
diff --git a/check-relaxng-test-suite.py b/check-relaxng-test-suite.py
index 0832758..e4dc634 100755
--- a/check-relaxng-test-suite.py
+++ b/check-relaxng-test-suite.py
@@ -4,7 +4,7 @@
 import os
 import string
 import StringIO
-sys.path.append("python")
+sys.path.insert(0, "python")
 import libxml2
 
 # Memory debug specific
diff --git a/check-relaxng-test-suite2.py b/check-relaxng-test-suite2.py
index 639e587..1cfd47b 100755
--- a/check-relaxng-test-suite2.py
+++ b/check-relaxng-test-suite2.py
@@ -4,7 +4,7 @@
 import os
 import string
 import StringIO
-sys.path.append("python")
+sys.path.insert(0, "python")
 import libxml2
 
 # Memory debug specific
diff --git a/check-xinclude-test-suite.py b/check-xinclude-test-suite.py
index 163ea32..f470011 100755
--- a/check-xinclude-test-suite.py
+++ b/check-xinclude-test-suite.py
@@ -3,7 +3,7 @@
 import time
 import os
 import string
-sys.path.append("python")
+sys.path.insert(0, "python")
 import libxml2
 
 #
diff --git a/check-xml-test-suite.py b/check-xml-test-suite.py
index ed0eaa2..2de07b1 100755
--- a/check-xml-test-suite.py
+++ b/check-xml-test-suite.py
@@ -3,7 +3,7 @@
 import time
 import os
 import string
-sys.path.append("python")
+sys.path.insert(0, "python")
 import libxml2
 
 test_nr = 0
diff --git a/check-xsddata-test-suite.py b/check-xsddata-test-suite.py
index f2066e1..af6f876 100755
--- a/check-xsddata-test-suite.py
+++ b/check-xsddata-test-suite.py
@@ -4,7 +4,7 @@
 import os
 import string
 import StringIO
-sys.path.append("python")
+sys.path.insert(0, "python")
 import libxml2
 
 # Memory debug specific
diff --git a/doc/examples/index.py b/doc/examples/index.py
index 944c181..db41165 100755
--- a/doc/examples/index.py
+++ b/doc/examples/index.py
@@ -9,7 +9,7 @@
     import libxml2
 except:
     sys.exit(1)
-sys.path.append("..")
+sys.path.insert(0, "..")
 from apibuild import CParser, escape
 
 examples = []