Differences From Artifact [ee0a228497]:
- File gc_lang/fr/modules/conj_generator.py — part of check-in [48056be413] at 2018-06-24 14:16:22 on branch rg — [core] code cleaning (pylint) (user: olr, size: 127207) [annotate] [blame] [check-ins using] [more...]
To Artifact [fa4d2b7c29]:
- File gc_lang/fr/modules/conj_generator.py — part of check-in [a85f64f6f8] at 2019-05-10 20:52:12 on branch trunk — [graphspell][core][fr] code cleaning (pylint) (user: olr, size: 127198) [annotate] [blame] [check-ins using]
| ︙ | |||
20 21 22 23 24 25 26 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - + |
def getVerbGroupChar (sVerb):
"returns the group number of <sVerb> guessing on its ending"
sVerb = sVerb.lower()
if sVerb.endswith("er"):
return "1"
if sVerb.endswith("ir"):
return "2"
|
| ︙ |