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

@@ -113,7 +113,7 @@ typedef struct {
} PyoutputBuffer_Object;
#define PyoutputBuffer_Get(v) (((v) == Py_None) ? NULL : \
(((PyURI_Object *)(v))->obj))
(((PyoutputBuffer_Object *)(v))->obj))
typedef struct {
PyObject_HEAD
@@ -121,7 +121,7 @@ typedef struct {
} PyinputBuffer_Object;
#define PyinputBuffer_Get(v) (((v) == Py_None) ? NULL : \
(((PyURI_Object *)(v))->obj))
(((PyinputBuffer_Object *)(v))->obj))
typedef struct {
PyObject_HEAD