/usr/lib/python3/dist-packages/lxml/includes
NameSizeModeActions
__pycache__/-0755rm
c14n.pxd11230644editdlrm
config.pxd960644editdlrm
dtdvalid.pxd6710644editdlrm
etreepublic.pxd101220644editdlrm
etree_defs.h156920644editdlrm
htmlparser.pxd28680644editdlrm
lxml-version.h710644editdlrm
relaxng.pxd26690644editdlrm
schematron.pxd16400644editdlrm
tree.pxd200910644editdlrm
uri.pxd1390644editdlrm
xinclude.pxd8520644editdlrm
xmlerror.pxd579350644editdlrm
xmlparser.pxd108520644editdlrm
xmlschema.pxd16960644editdlrm
xpath.pxd57940644editdlrm
xslt.pxd83410644editdlrm
__init__.pxd00644editdlrm
__init__.py00644editdlrm
Edit: /usr/lib/python3/dist-packages/lxml/includes/c14n.pxd (1123B)
from lxml.includes.tree cimport xmlDoc, xmlOutputBuffer, xmlChar from lxml.includes.xpath cimport xmlNodeSet cdef extern from "libxml/c14n.h": cdef int xmlC14NDocDumpMemory(xmlDoc* doc, xmlNodeSet* nodes, int exclusive, xmlChar** inclusive_ns_prefixes, int with_comments, xmlChar** doc_txt_ptr) nogil cdef int xmlC14NDocSave(xmlDoc* doc, xmlNodeSet* nodes, int exclusive, xmlChar** inclusive_ns_prefixes, int with_comments, char* filename, int compression) nogil cdef int xmlC14NDocSaveTo(xmlDoc* doc, xmlNodeSet* nodes, int exclusive, xmlChar** inclusive_ns_prefixes, int with_comments, xmlOutputBuffer* buffer) nogil