--- embedaddon/libxml2/python/tests/reader6.py 2012/02/21 23:38:00 1.1.1.1 +++ embedaddon/libxml2/python/tests/reader6.py 2014/06/15 19:53:34 1.1.1.2 @@ -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=""" @@ -41,7 +46,7 @@ docstr=""" 100 """ -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()