diff options
author | Ned Deily <nad@acm.org> | 2011-12-14 23:03:31 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-12-14 23:03:31 (GMT) |
commit | 1b0b6ae36bfdf01a34c040a8ee8e4d9926c7443f (patch) | |
tree | e9bd7fd078324699f410db63f16479a8c1f6bdc7 /Lib/idlelib/EditorWindow.py | |
parent | 77e1bfc3777a318232e0816c4a9a15fc7955d80d (diff) | |
parent | f505b7425c1e46e847dfc1e4528bc178af06b085 (diff) | |
download | cpython-1b0b6ae36bfdf01a34c040a8ee8e4d9926c7443f.zip cpython-1b0b6ae36bfdf01a34c040a8ee8e4d9926c7443f.tar.gz cpython-1b0b6ae36bfdf01a34c040a8ee8e4d9926c7443f.tar.bz2 |
Issue #4625: If IDLE cannot write to its recent file or breakpoint
files, display a message popup and continue rather than crash.
(original patch by Roger Serwy)
Diffstat (limited to 'Lib/idlelib/EditorWindow.py')
-rw-r--r-- | Lib/idlelib/EditorWindow.py | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py index d77f0a4..203a195 100644 --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -799,12 +799,17 @@ class EditorWindow(object): rf_list = [path for path in rf_list if path not in bad_paths] ulchars = "1234567890ABCDEFGHIJK" rf_list = rf_list[0:len(ulchars)] - rf_file = open(self.recent_files_path, 'w', - encoding='utf_8', errors='replace') try: - rf_file.writelines(rf_list) - finally: - rf_file.close() + with open(self.recent_files_path, 'w', + encoding='utf_8', errors='replace') as rf_file: + rf_file.writelines(rf_list) + except IOError as err: + if not getattr(self.root, "recentfilelist_error_displayed", False): + self.root.recentfilelist_error_displayed = True + tkMessageBox.showerror(title='IDLE Error', + message='Unable to update Recent Files list:\n%s' + % str(err), + parent=self.text) # for each edit window instance, construct the recent files menu for instance in self.top.instance_dict: menu = instance.recent_files_menu |