selectolax 0.3.17__cp37-cp37m-win32.whl → 0.3.18__cp37-cp37m-win32.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 CHANGED
@@ -3,7 +3,7 @@
3
3
 
4
4
  __author__ = """Artem Golubin"""
5
5
  __email__ = 'me@rushter.com'
6
- __version__ = '0.3.17'
6
+ __version__ = '0.3.18'
7
7
 
8
8
  from . import parser
9
9
  from . import lexbor
@@ -72,6 +72,7 @@ cdef class LexborCSSSelector:
72
72
  raise SelectolaxError("Can't parse CSS selector.")
73
73
  result = bool(self.results)
74
74
  self.results = []
75
+ lxb_css_selector_list_destroy_memory(selectors_list)
75
76
  return result
76
77
 
77
78