Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/lxml/includes/c14n.pxd @ 1:56ad4e20f292 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
| author | guerler |
|---|---|
| date | Fri, 31 Jul 2020 00:32:28 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 0:d30785e31577 | 1:56ad4e20f292 |
|---|---|
| 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 |
