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/indexes.py | |
parent | 3c845c4be476dc0ecb93388de9cfedb3f611e6a8 (diff) | |
download | libxml2-2c8fe012ef1ff6e0613480dd182dec099aa9636e.tar.gz |
Imported Upstream version 2.9.1upstream/2.9.1
Diffstat (limited to 'python/tests/indexes.py')
-rwxr-xr-x | python/tests/indexes.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/python/tests/indexes.py b/python/tests/indexes.py index 8d7a7fc..e41a0d9 100755 --- a/python/tests/indexes.py +++ b/python/tests/indexes.py @@ -20,16 +20,16 @@ class callback: def startDocument(self): global ctxt if ctxt.byteConsumed() != self.startd: - print "document start at wrong index: %d expecting %d\n" % ( - ctxt.byteConsumed(), self.startd) + print("document start at wrong index: %d expecting %d\n" % ( + ctxt.byteConsumed(), self.startd)) sys.exit(1) def endDocument(self): global ctxt expect = self.ende + self.delta * (self.count - 1) + self.endd if ctxt.byteConsumed() != expect: - print "document end at wrong index: %d expecting %d\n" % ( - ctxt.byteConsumed(), expect) + print("document end at wrong index: %d expecting %d\n" % ( + ctxt.byteConsumed(), expect)) sys.exit(1) def startElement(self, tag, attrs): @@ -37,8 +37,8 @@ class callback: if tag == "bar1": expect = self.starte + self.delta * self.count if ctxt.byteConsumed() != expect: - print "element start at wrong index: %d expecting %d\n" % ( - ctxt.byteConsumed(), expect) + print("element start at wrong index: %d expecting %d\n" % ( + ctxt.byteConsumed(), expect)) sys.exit(1) @@ -47,8 +47,8 @@ class callback: if tag == "bar1": expect = self.ende + self.delta * self.count if ctxt.byteConsumed() != expect: - print "element end at wrong index: %d expecting %d\n" % ( - ctxt.byteConsumed(), expect) + print("element end at wrong index: %d expecting %d\n" % ( + ctxt.byteConsumed(), expect)) sys.exit(1) self.count = self.count + 1 @@ -107,7 +107,7 @@ ctxt=None # 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() |