selectolax 0.3.30__cp39-cp39-win_arm64.whl → 0.3.32__cp39-cp39-win_arm64.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.

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