cpython (merge 3.4 -> 3.5): Merge with 3.4
https://hg.python.org/cpython/rev/eeb70cdbbb99 changeset: 98867:eeb70cdbbb99 branch: 3.5 parent: 98862:7b1a9a12eb77 parent: 98866:8e42f11bd5ee user: Terry Jan Reedy <tjreedy@udel.edu> date: Tue Oct 27 03:38:18 2015 -0400 summary: Merge with 3.4 files: Lib/idlelib/EditorWindow.py | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Lib/idlelib/EditorWindow.py b/Lib/idlelib/EditorWindow.py --- a/Lib/idlelib/EditorWindow.py +++ b/Lib/idlelib/EditorWindow.py @@ -887,9 +887,11 @@ except OSError 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), + tkMessageBox.showwarning(title='IDLE Warning', + message="Cannot update File menu Recent Files list. " + "Your operating system says:\n%s\n" + "Select OK and IDLE will continue without updating." + % self._filename_to_unicode(str(err)), parent=self.text) # for each edit window instance, construct the recent files menu for instance in self.top.instance_dict: -- Repository URL: https://hg.python.org/cpython
participants (1)
-
terry.reedy