comparison env/lib/python3.9/site-packages/lxml/includes/c14n.pxd @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
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