diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2012-05-27 00:33:32 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2012-05-27 00:33:32 (GMT) |
commit | eaa7e7825e9f4b211bc104cfde6cc951f9dcb94e (patch) | |
tree | 752a64ab668341f85f10fb2ace95a4b293e18b2b /Lib/idlelib/IOBinding.py | |
parent | 42f7b7ecb2cd2e0c3d62315f033639b2ad8bacd9 (diff) | |
download | cpython-eaa7e7825e9f4b211bc104cfde6cc951f9dcb94e.zip cpython-eaa7e7825e9f4b211bc104cfde6cc951f9dcb94e.tar.gz cpython-eaa7e7825e9f4b211bc104cfde6cc951f9dcb94e.tar.bz2 |
Issue #10365: File open dialog now works instead of crashing
even when parent window is closed. Patch by Roger Serwy.
Diffstat (limited to 'Lib/idlelib/IOBinding.py')
-rw-r--r-- | Lib/idlelib/IOBinding.py | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py index c515432..e11253e 100644 --- a/Lib/idlelib/IOBinding.py +++ b/Lib/idlelib/IOBinding.py @@ -196,7 +196,8 @@ class IOBinding: self.filename_change_hook() def open(self, event=None, editFile=None): - if self.editwin.flist: + flist = self.editwin.flist + if flist: if not editFile: filename = self.askopenfile() else: @@ -207,16 +208,22 @@ class IOBinding: # we open a new window. But we won't replace the # shell window (which has an interp(reter) attribute), which # gets set to "not modified" at every new prompt. + # Also, make sure the current window has not been closed, + # since it can be closed during the Open File dialog. try: interp = self.editwin.interp except AttributeError: interp = None - if not self.filename and self.get_saved() and not interp: - self.editwin.flist.open(filename, self.loadfile) + + if self.editwin and not self.filename and \ + self.get_saved() and not interp: + flist.open(filename, self.loadfile) else: - self.editwin.flist.open(filename) + flist.open(filename) else: - self.text.focus_set() + if self.text: + self.text.focus_set() + return "break" # # Code for use outside IDLE: |