(self, filename, lineno=None)
| 42 | return None |
| 43 | |
| 44 | def gotofileline(self, filename, lineno=None): |
| 45 | edit = self.open(filename) |
| 46 | if edit is not None and lineno is not None: |
| 47 | edit.gotoline(lineno) |
| 48 | |
| 49 | def new(self, filename=None): |
| 50 | return self.EditorWindow(self, filename) |
no test coverage detected