(s)
| 35 | def is_consonant(s): |
| 36 | return s not in VOWELS |
| 37 | def is_double_consonant(s): |
| 38 | return s in DOUBLE |
| 39 | |
| 40 | def is_short_syllable(w, before=None): |
| 41 | """ A short syllable in a word is either: |
no outgoing calls
no test coverage detected
searching dependent graphs…