tokenizer.pyx: add noexcept to be compatible with Cython 3

This commit is contained in:
Dāvis Mosāns 2025-03-06 23:06:34 +02:00
parent 7a08ee8172
commit 9f92a51f84
No known key found for this signature in database
GPG Key ID: ABA077CA3812CCB9

View File

@ -871,11 +871,11 @@ cdef extern from "<algorithm>" namespace "std" nogil:
bint (*)(SpanC, SpanC))
cdef bint len_start_cmp(SpanC a, SpanC b) nogil:
cdef bint len_start_cmp(SpanC a, SpanC b) noexcept nogil:
if a.end - a.start == b.end - b.start:
return b.start < a.start
return a.end - a.start < b.end - b.start
cdef bint start_cmp(SpanC a, SpanC b) nogil:
cdef bint start_cmp(SpanC a, SpanC b) noexcept nogil:
return a.start < b.start