mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-26 10:03:34 +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:
parent
d1757abcb8
commit
cb40c222a4
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -3,7 +3,7 @@ import sys
|
||||
import time
|
||||
import os
|
||||
import string
|
||||
sys.path.append("python")
|
||||
sys.path.insert(0, "python")
|
||||
import libxml2
|
||||
|
||||
#
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -9,7 +9,7 @@ try:
|
||||
import libxml2
|
||||
except:
|
||||
sys.exit(1)
|
||||
sys.path.append("..")
|
||||
sys.path.insert(0, "..")
|
||||
from apibuild import CParser, escape
|
||||
|
||||
examples = []
|
||||
|
Loading…
x
Reference in New Issue
Block a user