1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-21 14:53:44 +03:00

cleanup the output buffer support to at least get the basic to work fixes

* python/generator.py python/libxml.c python/libxml_wrap.h:
  cleanup the output buffer support to at least get the basic
  to work
* python/tests/outbuf.py python/tests/serialize.py: fixes and
  cleanup.
* include/libxml/xmlwriter.h: cleanup
Daniel
This commit is contained in:
Daniel Veillard
2003-12-04 12:31:49 +00:00
parent 7c5f586844
commit 6cbd6c0738
8 changed files with 124 additions and 28 deletions

View File

@@ -3,8 +3,8 @@ import sys
import libxml2
import StringIO
print "Skipped"
sys.exit(1)
#print "Skipped"
#sys.exit(1)
# Memory debug specific
libxml2.debugMemory(1)
@@ -15,12 +15,12 @@ buf = libxml2.createOutputBuffer(f, "ISO-8859-1")
buf.write(3, "foo")
buf.writeString("bar")
buf.close()
del buf
if f.getvalue() != "foobar":
print "Failed to save to StringIO"
sys.exit(1)
del buf
del f
# Memory debug specific