Open module with file_open and position to lineno.
(self)
| 230 | for obj in transform_children(self.obj.children)] |
| 231 | |
| 232 | def OnDoubleClick(self): |
| 233 | "Open module with file_open and position to lineno." |
| 234 | try: |
| 235 | edit = file_open(self.obj.file) |
| 236 | edit.gotoline(self.obj.lineno) |
| 237 | except (OSError, AttributeError): |
| 238 | pass |
| 239 | |
| 240 | |
| 241 | def _module_browser(parent): # htest # |