Returns the indefinite or definite article for the given word.
(word, function=INDEFINITE, gender=MALE)
| 92 | "definite", "indefinite" |
| 93 | |
| 94 | def article(word, function=INDEFINITE, gender=MALE): |
| 95 | """ Returns the indefinite or definite article for the given word. |
| 96 | """ |
| 97 | return function == DEFINITE \ |
| 98 | and definite_article(word, gender) \ |
| 99 | or indefinite_article(word, gender) |
| 100 | |
| 101 | _article = article |
| 102 |
nothing calls this directly
no test coverage detected
searching dependent graphs…