10 lines
209 B
Cython
10 lines
209 B
Cython
|
from ..structs cimport MorphAnalysisC
|
||
|
from ..typedefs cimport hash_t
|
||
|
from ..vocab cimport Vocab
|
||
|
|
||
|
|
||
|
cdef class MorphAnalysis:
|
||
|
cdef readonly Vocab vocab
|
||
|
cdef readonly hash_t key
|
||
|
cdef MorphAnalysisC c
|