mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
8 lines
156 B
Cython
8 lines
156 B
Cython
from spacy.lang cimport Language
|
|
from spacy.word cimport Lexeme
|
|
cimport cython
|
|
|
|
|
|
cdef class English(Language):
|
|
cpdef int _split_one(self, unicode word)
|