Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/lxml/includes/xinclude.pxd @ 2:6af9afd405e9 draft
"planemo upload commit 0a63dd5f4d38a1f6944587f52a8cd79874177fc1"
author | shellac |
---|---|
date | Thu, 14 May 2020 14:56:58 -0400 |
parents | 26e78fe6e8c4 |
children |
comparison
equal
deleted
inserted
replaced
1:75ca89e9b81c | 2:6af9afd405e9 |
---|---|
1 from lxml.includes.tree cimport xmlDoc, xmlNode | |
2 | |
3 cdef extern from "libxml/xinclude.h": | |
4 | |
5 ctypedef struct xmlXIncludeCtxt | |
6 | |
7 cdef int xmlXIncludeProcess(xmlDoc* doc) nogil | |
8 cdef int xmlXIncludeProcessFlags(xmlDoc* doc, int parser_opts) nogil | |
9 cdef int xmlXIncludeProcessTree(xmlNode* doc) nogil | |
10 cdef int xmlXIncludeProcessTreeFlags(xmlNode* doc, int parser_opts) nogil | |
11 | |
12 # libxml2 >= 2.7.4 | |
13 cdef int xmlXIncludeProcessTreeFlagsData( | |
14 xmlNode* doc, int parser_opts, void* data) nogil | |
15 | |
16 cdef xmlXIncludeCtxt* xmlXIncludeNewContext(xmlDoc* doc) nogil | |
17 cdef int xmlXIncludeProcessNode(xmlXIncludeCtxt* ctxt, xmlNode* node) nogil | |
18 cdef int xmlXIncludeSetFlags(xmlXIncludeCtxt* ctxt, int flags) nogil | |
19 | |
20 # libxml2 >= 2.6.27 | |
21 cdef int xmlXIncludeProcessFlagsData( | |
22 xmlDoc* doc, int flags, void* data) nogil |