selectolax 0.3.30__cp39-cp39-win_amd64.whl → 0.3.32__cp39-cp39-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of selectolax might be problematic. Click here for more details.
- selectolax/__init__.py +1 -1
- selectolax/lexbor/attrs.pxi +27 -9
- selectolax/lexbor/node.pxi +3 -0
- selectolax/lexbor/selection.pxi +1 -0
- selectolax/lexbor.c +53277 -55460
- selectolax/lexbor.cp39-win_amd64.pyd +0 -0
- selectolax/lexbor.pxd +5 -6
- selectolax/lexbor.pyi +716 -66
- selectolax/parser.c +50957 -52640
- selectolax/parser.cp39-win_amd64.pyd +0 -0
- selectolax/parser.pyi +487 -43
- {selectolax-0.3.30.dist-info → selectolax-0.3.32.dist-info}/METADATA +6 -16
- selectolax-0.3.32.dist-info/RECORD +26 -0
- selectolax-0.3.30.dist-info/RECORD +0 -26
- {selectolax-0.3.30.dist-info → selectolax-0.3.32.dist-info}/WHEEL +0 -0
- {selectolax-0.3.30.dist-info → selectolax-0.3.32.dist-info}/licenses/LICENSE +0 -0
- {selectolax-0.3.30.dist-info → selectolax-0.3.32.dist-info}/top_level.txt +0 -0
|
Binary file
|
selectolax/lexbor.pxd
CHANGED
|
@@ -60,21 +60,21 @@ cdef extern from "lexbor/html/html.h" nogil:
|
|
|
60
60
|
|
|
61
61
|
ctypedef struct lxb_dom_node_t:
|
|
62
62
|
lxb_dom_event_target_t event_target
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
|
|
64
|
+
|
|
65
65
|
uintptr_t local_name
|
|
66
66
|
uintptr_t prefix
|
|
67
67
|
uintptr_t ns
|
|
68
|
-
|
|
68
|
+
|
|
69
69
|
lxb_dom_document_t *owner_document
|
|
70
|
-
|
|
70
|
+
|
|
71
71
|
lxb_dom_node_t *next
|
|
72
72
|
lxb_dom_node_t *prev
|
|
73
73
|
lxb_dom_node_t *parent
|
|
74
74
|
lxb_dom_node_t *first_child
|
|
75
75
|
lxb_dom_node_t *last_child
|
|
76
76
|
void *user
|
|
77
|
-
|
|
77
|
+
|
|
78
78
|
lxb_dom_node_type_t type
|
|
79
79
|
|
|
80
80
|
|
|
@@ -318,7 +318,6 @@ cdef extern from "lexbor/dom/dom.h" nogil:
|
|
|
318
318
|
void lxb_dom_node_insert_child(lxb_dom_node_t *to, lxb_dom_node_t *node)
|
|
319
319
|
void lxb_dom_node_insert_before(lxb_dom_node_t *to, lxb_dom_node_t *node)
|
|
320
320
|
void lxb_dom_node_insert_after(lxb_dom_node_t *to, lxb_dom_node_t *node)
|
|
321
|
-
|
|
322
321
|
lxb_dom_text_t * lxb_dom_document_create_text_node(lxb_dom_document_t *document, const lxb_char_t *data, size_t len)
|
|
323
322
|
void lxb_dom_node_simple_walk(lxb_dom_node_t *root, lxb_dom_node_simple_walker_f walker_cb, void *ctx)
|
|
324
323
|
|