(self, maxtext, maxlines)
| 130 | return maxlines and self.end - self.start > maxlines |
| 131 | |
| 132 | def too_much(self, maxtext, maxlines): |
| 133 | if self.too_much_text(maxtext): |
| 134 | pass |
| 135 | elif self.too_many_lines(maxlines): |
| 136 | pass |
| 137 | else: |
| 138 | return False |
| 139 | |
| 140 | #if re.fullmatch(r'[^;]+\[\][ ]*=[ ]*[{]([ ]*\d+,)*([ ]*\d+,?)\s*', |
| 141 | # self._current.text): |
| 142 | # return False |
| 143 | return True |
| 144 | |
| 145 | def _set_ready(self): |
| 146 | if self._current is None: |
no test coverage detected