Mercurial > repos > shellac > guppy_basecaller
comparison env/lib/python3.7/site-packages/lxml/includes/c14n.pxd @ 5:9b1c78e6ba9c draft default tip
"planemo upload commit 6c0a8142489327ece472c84e558c47da711a9142"
author | shellac |
---|---|
date | Mon, 01 Jun 2020 08:59:25 -0400 |
parents | 79f47841a781 |
children |
comparison
equal
deleted
inserted
replaced
4:79f47841a781 | 5:9b1c78e6ba9c |
---|---|
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 |