(self, comment)
| 577 | return comments[first_index:] |
| 578 | |
| 579 | def _is_translator_comment(self, comment): |
| 580 | return comment.startswith(self.options.comment_tags) |
| 581 | |
| 582 | def _add_message( |
| 583 | self, lineno, msgid, msgid_plural=None, msgctxt=None, *, |
no test coverage detected