summaryrefslogtreecommitdiff
path: root/src/lxml/sax.pxd
blob: 215e53fae8bd93e48eed136cd9d166a7afa6f790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cimport cython

cdef tuple _getNsTag(tag)

cdef class ElementTreeProducer:
    cdef _element
    cdef _content_handler
    cdef _attr_class
    cdef _empty_attributes

    @cython.locals(element_nsmap=dict)
    cdef inline _recursive_saxify(self, element, dict parent_nsmap)

    cdef inline _build_qname(self, ns_uri, local_name, dict nsmap, preferred_prefix, bint is_attribute)