mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-14 22:50:08 +03:00
12 lines
285 B
Plaintext
12 lines
285 B
Plaintext
|
SAX.setDocumentLocator()
|
||
|
SAX.startDocument()
|
||
|
SAX.startElement(element, name='foo', xmlns:rng='http://example.org/ns/1', xmlns='http://example.org/ns/1')
|
||
|
SAX.characters(
|
||
|
, 3)
|
||
|
SAX.startElement(empty)
|
||
|
SAX.endElement(empty)
|
||
|
SAX.characters(
|
||
|
, 1)
|
||
|
SAX.endElement(element)
|
||
|
SAX.endDocument()
|