comparison env/lib/python3.7/site-packages/lxml/includes/c14n.pxd @ 0:26e78fe6e8c4 draft

"planemo upload commit c699937486c35866861690329de38ec1a5d9f783"
author shellac
date Sat, 02 May 2020 07:14:21 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:26e78fe6e8c4
1 from lxml.includes.tree cimport xmlDoc, xmlOutputBuffer, xmlChar
2 from lxml.includes.xpath cimport xmlNodeSet
3
4 cdef extern from "libxml/c14n.h":
5 cdef int xmlC14NDocDumpMemory(xmlDoc* doc,
6 xmlNodeSet* nodes,
7 int exclusive,
8 xmlChar** inclusive_ns_prefixes,
9 int with_comments,
10 xmlChar** doc_txt_ptr) nogil
11
12 cdef int xmlC14NDocSave(xmlDoc* doc,
13 xmlNodeSet* nodes,
14 int exclusive,
15 xmlChar** inclusive_ns_prefixes,
16 int with_comments,
17 char* filename,
18 int compression) nogil
19
20 cdef int xmlC14NDocSaveTo(xmlDoc* doc,
21 xmlNodeSet* nodes,
22 int exclusive,
23 xmlChar** inclusive_ns_prefixes,
24 int with_comments,
25 xmlOutputBuffer* buffer) nogil
26