mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
10 lines
200 B
Cython
10 lines
200 B
Cython
|
from ..vocab cimport Vocab
|
||
|
from ..typedefs cimport hash_t
|
||
|
from ..structs cimport MorphAnalysisC
|
||
|
|
||
|
|
||
|
cdef class MorphAnalysis:
|
||
|
cdef readonly Vocab vocab
|
||
|
cdef hash_t key
|
||
|
cdef MorphAnalysisC c
|