mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
9 lines
169 B
Cython
9 lines
169 B
Cython
|
from ..tokens.doc cimport Doc
|
||
|
from .align cimport Alignment
|
||
|
|
||
|
|
||
|
cdef class Example:
|
||
|
cdef readonly Doc x
|
||
|
cdef readonly Doc y
|
||
|
cdef readonly Alignment _alignment
|