1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00
libxml2/result/ns6.sax

16 lines
278 B
Plaintext
Raw Normal View History

SAX.setDocumentLocator()
SAX.startDocument()
SAX.startElement(root)
SAX.characters(
, 3)
SAX.startElement(foo, xmlns='http://abc')
SAX.endElement(foo)
SAX.characters(
, 3)
SAX.startElement(bar)
SAX.endElement(bar)
SAX.characters(
, 1)
SAX.endElement(root)
SAX.endDocument()