(self, lineno, tokens)
| 853 | widget_list.append(urwid.Text(("comment", docstring))) |
| 854 | |
| 855 | def reprint_line(self, lineno, tokens): |
| 856 | edit = self.edits[-len(self.buffer) + lineno - 1] |
| 857 | edit.set_edit_markup(list(format_tokens(tokens))) |
| 858 | |
| 859 | def getstdout(self): |
| 860 | """This method returns the 'spoofed' stdout buffer, for writing to a |
nothing calls this directly
no test coverage detected