(self, maxlines)
| 127 | return maxtext and len(self.text) > maxtext |
| 128 | |
| 129 | def too_many_lines(self, 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): |
no outgoing calls
no test coverage detected