Commit 806c944e authored by Ned Deily's avatar Ned Deily

Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x,

preventing a confusing hung appearance on OS X with the windows
obscured.  (with release manager approval for 3.2rc2)
parent 70063937
...@@ -190,10 +190,10 @@ class ScriptBinding: ...@@ -190,10 +190,10 @@ class ScriptBinding:
icon=tkMessageBox.QUESTION, icon=tkMessageBox.QUESTION,
type=tkMessageBox.OKCANCEL, type=tkMessageBox.OKCANCEL,
default=tkMessageBox.OK, default=tkMessageBox.OK,
parent=self.editwin.text) master=self.editwin.text)
return mb.show() return mb.show()
def errorbox(self, title, message): def errorbox(self, title, message):
# XXX This should really be a function of EditorWindow... # XXX This should really be a function of EditorWindow...
tkMessageBox.showerror(title, message, parent=self.editwin.text) tkMessageBox.showerror(title, message, master=self.editwin.text)
self.editwin.text.focus_set() self.editwin.text.focus_set()
...@@ -16,6 +16,10 @@ Core and Builtins ...@@ -16,6 +16,10 @@ Core and Builtins
Library Library
------- -------
- Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x,
preventing a confusing hung appearance on OS X with the windows
obscured.
- Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the - Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using the
menu accelerators for Open Module, Go to Line, and New Indent Width. menu accelerators for Open Module, Go to Line, and New Indent Width.
The accelerators still work but no longer appear in the menu items. The accelerators still work but no longer appear in the menu items.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment