/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/dtdvalid.pxd (671B)
from lxml.includes cimport tree from lxml.includes.tree cimport xmlDoc, xmlDtd cdef extern from "libxml/valid.h" nogil: ctypedef void (*xmlValidityErrorFunc)(void * ctx, const char * msg, ...) ctypedef void (*xmlValidityWarningFunc)(void * ctx, const char * msg, ...) ctypedef struct xmlValidCtxt: void *userData xmlValidityErrorFunc error xmlValidityWarningFunc warning cdef xmlValidCtxt* xmlNewValidCtxt() cdef void xmlFreeValidCtxt(xmlValidCtxt* cur) cdef int xmlValidateDtd(xmlValidCtxt* ctxt, xmlDoc* doc, xmlDtd* dtd) cdef tree.xmlElement* xmlGetDtdElementDesc( xmlDtd* dtd, tree.const_xmlChar* name)