mirror of
https://github.com/explosion/spaCy.git
synced 2025-04-05 01:34:14 +03:00
tokenizer.pyx: add noexcept
to be compatible with Cython 3
This commit is contained in:
parent
7a08ee8172
commit
9f92a51f84
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user