mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-11 16:52:21 +03:00
8 lines
198 B
Cython
8 lines
198 B
Cython
from spacy.lang cimport Language
|
|
from spacy.word cimport Lexeme
|
|
from spacy.tokens cimport Tokens
|
|
|
|
|
|
cdef class English(Language):
|
|
cdef int _split_one(self, Py_UNICODE* characters, size_t length)
|