Coverage for lino/modlib/vocbook/et.py : 0%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# -*- coding: UTF-8 -*- # Copyright 2011-2014 Luc Saffre # License: BSD (see file COPYING for details)
""" Work in progress.
See :srcref:`docs/tickets/92`.
"""
from lino.modlib.vocbook.base import Language, Word, WordType
class EstonianWord(Word): pass
class Estonian(Language):
@classmethod def parse_word(cls, s, **kw): s = s.strip() return cls.register_word(EstonianWord(s, **kw)) |