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/reader6.py | |
parent | 3c845c4be476dc0ecb93388de9cfedb3f611e6a8 (diff) | |
download | libxml2-2c8fe012ef1ff6e0613480dd182dec099aa9636e.tar.gz |
Imported Upstream version 2.9.1upstream/2.9.1
Diffstat (limited to 'python/tests/reader6.py')
-rwxr-xr-x | python/tests/reader6.py | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/python/tests/reader6.py b/python/tests/reader6.py index 7a34601..ef33b18 100755 --- a/python/tests/reader6.py +++ b/python/tests/reader6.py @@ -3,8 +3,13 @@ # this tests the entities substitutions with the XmlTextReader interface # import sys -import StringIO import libxml2 +try: + import StringIO + str_io = StringIO.StringIO +except: + import io + str_io = io.StringIO schema="""<element name="foo" xmlns="http://relaxng.org/ns/structure/1.0" datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"> @@ -41,7 +46,7 @@ docstr="""<foo> <item>100</item> </foo>""" -f = StringIO.StringIO(docstr) +f = str_io(docstr) input = libxml2.inputBuffer(f) reader = input.newTextReader("correct") reader.RelaxNGSetSchema(rngs) @@ -50,11 +55,11 @@ while ret == 1: ret = reader.Read() if ret != 0: - print "Error parsing the document" + print("Error parsing the document") sys.exit(1) if reader.IsValid() != 1: - print "Document failed to validate" + print("Document failed to validate") sys.exit(1) # @@ -84,7 +89,7 @@ def callback(ctx, str): err = err + "%s" % (str) libxml2.registerErrorHandler(callback, "") -f = StringIO.StringIO(docstr) +f = str_io(docstr) input = libxml2.inputBuffer(f) reader = input.newTextReader("error") reader.RelaxNGSetSchema(rngs) @@ -93,16 +98,16 @@ while ret == 1: ret = reader.Read() if ret != 0: - print "Error parsing the document" + print("Error parsing the document") sys.exit(1) if reader.IsValid() != 0: - print "Document failed to detect the validation error" + print("Document failed to detect the validation error") sys.exit(1) if err != expect: - print "Did not get the expected error message:" - print err + print("Did not get the expected error message:") + print(err) sys.exit(1) # @@ -117,7 +122,7 @@ libxml2.relaxNGCleanupTypes() # 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() |