Extend base method - clear breaks when module is closed
(self)
| 305 | # EditorWindow.saved_change_hook(self) |
| 306 | |
| 307 | def _close(self): |
| 308 | "Extend base method - clear breaks when module is closed" |
| 309 | self.clear_file_breaks() |
| 310 | EditorWindow._close(self) |
| 311 | |
| 312 | |
| 313 | class PyShellFileList(FileList): |
nothing calls this directly
no test coverage detected