diff options
author | William M. Brack <wbrack@src.gnome.org> | 2004-10-02 22:55:49 +0000 |
---|---|---|
committer | William M. Brack <wbrack@src.gnome.org> | 2004-10-02 22:55:49 +0000 |
commit | cb40c222a4f92fb4519ec571547f2b8fcbe6a4ed (patch) | |
tree | 80ffac1f404aba3b9b6a2487a3b5532b2e5e2ce0 | |
parent | d1757abcb891e01a9017f4aad041cc306d0d467b (diff) | |
download | libxml2-cb40c222a4f92fb4519ec571547f2b8fcbe6a4ed.tar.gz |
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)
-rw-r--r-- | ChangeLog | 8 | ||||
-rwxr-xr-x | check-relaxng-test-suite.py | 2 | ||||
-rwxr-xr-x | check-relaxng-test-suite2.py | 2 | ||||
-rwxr-xr-x | check-xinclude-test-suite.py | 2 | ||||
-rwxr-xr-x | check-xml-test-suite.py | 2 | ||||
-rwxr-xr-x | check-xsddata-test-suite.py | 2 | ||||
-rwxr-xr-x | doc/examples/index.py | 2 |
7 files changed, 14 insertions, 6 deletions
@@ -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 08327583..e4dc6347 100755 --- a/check-relaxng-test-suite.py +++ b/check-relaxng-test-suite.py @@ -4,7 +4,7 @@ import time 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 639e587d..1cfd47b1 100755 --- a/check-relaxng-test-suite2.py +++ b/check-relaxng-test-suite2.py @@ -4,7 +4,7 @@ import time 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 163ea32c..f470011e 100755 --- a/check-xinclude-test-suite.py +++ b/check-xinclude-test-suite.py @@ -3,7 +3,7 @@ import sys 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 ed0eaa20..2de07b10 100755 --- a/check-xml-test-suite.py +++ b/check-xml-test-suite.py @@ -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 diff --git a/check-xsddata-test-suite.py b/check-xsddata-test-suite.py index f2066e1b..af6f876a 100755 --- a/check-xsddata-test-suite.py +++ b/check-xsddata-test-suite.py @@ -4,7 +4,7 @@ import time 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 944c181e..db411657 100755 --- a/doc/examples/index.py +++ b/doc/examples/index.py @@ -9,7 +9,7 @@ try: import libxml2 except: sys.exit(1) -sys.path.append("..") +sys.path.insert(0, "..") from apibuild import CParser, escape examples = [] |