Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/lxml/includes/c14n.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, 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 |