Yasuhiro Yamaguchi

Results 3 issues of Yasuhiro Yamaguchi

RecursionError occurs in [`PorterStemmer._is_consonant`](https://github.com/nltk/nltk/blob/5a63a62cfc2bdd9d35d863d1c583942e3e6baf6b/nltk/stem/porter.py#L126) when trying to stem a word containing 'yyyyyyy....'. If the length of 'yyyyyyy....' is larger than the maximum recursion depth, PorterStemmer cannot stem the word. ```python...

stem/lemma

Related to #87 This PR changes generator to generate valid property/enum meber names: - Convert hyphens (`-`) in enum member names into `_` - Add `var_` prefix to property name...

**Describe the bug** Hello 👋 I encountered some errors with names like below: - property names starting with digit character (e.g. `30d_active`) - enum member name containing hyphen (e.g. `admin-user`)...