diff options
author | Aron Xu <aron@debian.org> | 2013-06-09 00:17:44 +0800 |
---|---|---|
committer | Aron Xu <aron@debian.org> | 2013-06-09 00:17:44 +0800 |
commit | 2c8fe012ef1ff6e0613480dd182dec099aa9636e (patch) | |
tree | f220f4e6733d3204aef57831a8dee2dd8551ed40 /python/tests/xpath.py | |
parent | 3c845c4be476dc0ecb93388de9cfedb3f611e6a8 (diff) | |
download | libxml2-2c8fe012ef1ff6e0613480dd182dec099aa9636e.tar.gz |
Imported Upstream version 2.9.1upstream/2.9.1
Diffstat (limited to 'python/tests/xpath.py')
-rwxr-xr-x | python/tests/xpath.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/python/tests/xpath.py b/python/tests/xpath.py index 2e036e1..72e6c9d 100755 --- a/python/tests/xpath.py +++ b/python/tests/xpath.py @@ -11,24 +11,24 @@ libxml2.debugMemory(1) doc = libxml2.parseFile("tst.xml") if doc.name != "tst.xml": - print "doc.name error" + print("doc.name error") sys.exit(1); ctxt = doc.xpathNewContext() res = ctxt.xpathEval("//*") if len(res) != 2: - print "xpath query: wrong node set size" + print("xpath query: wrong node set size") sys.exit(1) if res[0].name != "doc" or res[1].name != "foo": - print "xpath query: wrong node set value" + print("xpath query: wrong node set value") sys.exit(1) ctxt.setContextNode(res[0]) res = ctxt.xpathEval("foo") if len(res) != 1: - print "xpath query: wrong node set size" + print("xpath query: wrong node set size") sys.exit(1) if res[0].name != "foo": - print "xpath query: wrong node set value" + print("xpath query: wrong node set value") sys.exit(1) doc.freeDoc() ctxt.xpathFreeContext() @@ -45,7 +45,7 @@ del ctxt # Memory debug specific libxml2.cleanupParser() if libxml2.debugMemory(1) == 0: - print "OK" + print("OK") else: - print "Memory leak %d bytes" % (libxml2.debugMemory(1)) + print("Memory leak %d bytes" % (libxml2.debugMemory(1))) libxml2.dumpMemory() |