(self)
| 174 | self.owin.write(s, tags, mark) |
| 175 | |
| 176 | def setup(self): |
| 177 | self.owin = owin = OutputWindow(self.flist) |
| 178 | text = owin.text |
| 179 | for tag, cnf in self.tagdefs.items(): |
| 180 | if cnf: |
| 181 | text.tag_configure(tag, **cnf) |
| 182 | text.tag_raise('sel') |
| 183 | self.write = self.owin.write |
| 184 | |
| 185 | |
| 186 | if __name__ == '__main__': |
no test coverage detected