(self, parent, filename, title)
| 239 | class HelpWindow(Toplevel): |
| 240 | "Display frame with rendered html." |
| 241 | def __init__(self, parent, filename, title): |
| 242 | Toplevel.__init__(self, parent) |
| 243 | self.wm_title(title) |
| 244 | self.protocol("WM_DELETE_WINDOW", self.destroy) |
| 245 | self.frame = HelpFrame(self, filename) |
| 246 | self.frame.grid(column=0, row=0, sticky='nsew') |
| 247 | self.grid_columnconfigure(0, weight=1) |
| 248 | self.grid_rowconfigure(0, weight=1) |
| 249 | |
| 250 | |
| 251 | def copy_strip(): # pragma: no cover |
nothing calls this directly
no test coverage detected