(self, line)
| 1401 | logger.debug("display_lines: %r", self.display_lines) |
| 1402 | |
| 1403 | def send_to_stdin(self, line): |
| 1404 | if line.endswith("\n"): |
| 1405 | self.display_lines.extend( |
| 1406 | paint.display_linize(self.current_output_line, self.width) |
| 1407 | ) |
| 1408 | self.current_output_line = "" |
| 1409 | |
| 1410 | # formatting, output |
| 1411 | @property |
no outgoing calls
no test coverage detected