Returns a list of (word, confidence)-tuples of spelling corrections.
(w)
| 158 | return tags |
| 159 | |
| 160 | def suggest(w): |
| 161 | """ Returns a list of (word, confidence)-tuples of spelling corrections. |
| 162 | """ |
| 163 | return spelling.suggest(w) |
| 164 | |
| 165 | def polarity(s, **kwargs): |
| 166 | """ Returns the sentence polarity (positive/negative) between -1.0 and 1.0. |
nothing calls this directly
no test coverage detected
searching dependent graphs…