This commit is contained in:
Sofie Van Landeghem 2023-03-07 13:29:08 +01:00 committed by Adriane Boyd
parent 6177c87539
commit a1fc4ed962
2 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,8 @@ class Lexeme:
def orth_(self) -> str: ... def orth_(self) -> str: ...
@property @property
def text(self) -> str: ... def text(self) -> str: ...
lower: str orth: int
lower: int
norm: int norm: int
shape: int shape: int
prefix: int prefix: int

View File

@ -199,7 +199,7 @@ cdef class Lexeme:
return self.orth_ return self.orth_
property lower: property lower:
"""RETURNS (str): Lowercase form of the lexeme.""" """RETURNS (uint64): Lowercase form of the lexeme."""
def __get__(self): def __get__(self):
return self.c.lower return self.c.lower