--- embedaddon/libxml2/python/tests/inbuf.py 2012/02/21 23:38:00 1.1 +++ embedaddon/libxml2/python/tests/inbuf.py 2014/06/15 19:53:34 1.1.1.2 @@ -1,14 +1,19 @@ #!/usr/bin/python -u import sys import libxml2 -import StringIO +try: + import StringIO + str_io = StringIO.StringIO +except: + import io + str_io = io.StringIO # Memory debug specific libxml2.debugMemory(1) i = 0 while i < 5000: - f = StringIO.StringIO("foobar") + f = str_io("foobar") buf = libxml2.inputBuffer(f) i = i + 1 @@ -18,8 +23,8 @@ del buf # 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()