(adjective)
| 557 | return adjective[:len(b)] + suffix + adjective[len(b):] |
| 558 | |
| 559 | def comparative(adjective): |
| 560 | return grade(adjective, COMPARATIVE) |
| 561 | |
| 562 | def superlative(adjective): |
| 563 | return grade(adjective, SUPERLATIVE) |
nothing calls this directly
no test coverage detected
searching dependent graphs…