mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-03 00:42:24 +03:00
committed by
Nick Wellnhofer
parent
2c20c70cd8
commit
a2db8da1ac
@ -1,4 +1,6 @@
|
||||
#!/usr/bin/python -u
|
||||
from __future__ import print_function
|
||||
|
||||
import sys
|
||||
import libxml2
|
||||
# Memory debug specific
|
||||
@ -14,7 +16,7 @@ result = style.applyStylesheet(doc, None)
|
||||
style.saveResultToFilename("foo", result, 0)
|
||||
stringval = style.saveResultToString(result)
|
||||
if (len(stringval) != 68):
|
||||
print "Error in saveResultToString"
|
||||
print("Error in saveResultToString")
|
||||
sys.exit(255)
|
||||
style.freeStylesheet()
|
||||
doc.freeDoc()
|
||||
@ -23,8 +25,8 @@ result.freeDoc()
|
||||
# Memory debug specific
|
||||
libxslt.cleanup()
|
||||
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()
|
||||
sys.exit(255)
|
||||
|
Reference in New Issue
Block a user