mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-12 18:26:30 +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)
|