We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823859a commit 5ab196aCopy full SHA for 5ab196a
2 files changed
requirements_dev.txt
@@ -8,7 +8,7 @@ Sphinx==8.0.2
8
numpydoc==1.8.0
9
pytest>=3.7.2
10
pytest-runner>=4.2
11
-Cython>=3.0.11
+Cython==3.0.12
12
pluggy>=0.7.1
13
mypy==1.4.1
14
types-pyinstaller==6.10.0.20240812
@@ -17,4 +17,4 @@ sphinxext-opengraph==0.9.1
17
sphinx-copybutton==0.5.2
18
ruff
19
setuptools==75.7.0
20
-pytest-mypy-plugins>=3.2,<4.0.0
+pytest-mypy-plugins>=3.2,<4.0.0
selectolax/lexbor.pyx
@@ -99,7 +99,7 @@ cdef class LexborHTMLParser:
99
100
if not name:
101
raise ValueError("Tag name cannot be empty")
102
- if len(name) > 100: # Reasonable limit for tag names
+ if len(name) > 100:
103
raise ValueError("Tag name is too long")
104
105
cdef lxb_dom_collection_t* collection = NULL
0 commit comments