74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
("OEIL", "ŒIL"),
("apele", "appel"),
("Co2", "CO₂"),
("emmppâiiiller", "empailler"),
("testt", "test"),
("apelaion", "appellation"),
("exsepttion", "exception"),
("sintaxik", "syntaxique"),
("ebriete", "ébriété"),
("ennormmement", "énormément")
]:
#with timeblock(sWord):
for lSugg in self.oSpellChecker.suggest(sWrong):
#print(sWord, "->", " ".join(lSugg))
self.assertIn(sSugg, lSugg)
|
<
|
>
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
("OEIL", "ŒIL"),
("apele", "appel"),
("Co2", "CO₂"),
("emmppâiiiller", "empailler"),
("testt", "test"),
("apelaion", "appellation"),
("exsepttion", "exception"),
("ebriete", "ébriété"),
("ennormmement", "énormément"),
("sintaxik", "syntaxique")
]:
#with timeblock(sWord):
for lSugg in self.oSpellChecker.suggest(sWrong):
#print(sWord, "->", " ".join(lSugg))
self.assertIn(sSugg, lSugg)
|