[Python-checkins] r88242 - in python/branches/release31-maint: Lib/idlelib/ScriptBinding.py Misc/NEWS

ned.deily python-checkins at python.org
Sun Jan 30 00:34:20 CET 2011


Author: ned.deily
Date: Sun Jan 30 00:34:19 2011
New Revision: 88242

Log:
Merged revisions 88234 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r88234 | ned.deily | 2011-01-29 10:43:56 -0800 (Sat, 29 Jan 2011) | 5 lines
  
  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)
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Lib/idlelib/ScriptBinding.py
   python/branches/release31-maint/Misc/NEWS

Modified: python/branches/release31-maint/Lib/idlelib/ScriptBinding.py
==============================================================================
--- python/branches/release31-maint/Lib/idlelib/ScriptBinding.py	(original)
+++ python/branches/release31-maint/Lib/idlelib/ScriptBinding.py	Sun Jan 30 00:34:19 2011
@@ -190,10 +190,10 @@
                                   icon=tkMessageBox.QUESTION,
                                   type=tkMessageBox.OKCANCEL,
                                   default=tkMessageBox.OK,
-                                  parent=self.editwin.text)
+                                  master=self.editwin.text)
         return mb.show()
 
     def errorbox(self, title, message):
         # 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()

Modified: python/branches/release31-maint/Misc/NEWS
==============================================================================
--- python/branches/release31-maint/Misc/NEWS	(original)
+++ python/branches/release31-maint/Misc/NEWS	Sun Jan 30 00:34:19 2011
@@ -37,6 +37,10 @@
 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 #11052: Correct IDLE menu accelerators on Mac OS X for Save
   commands.
 


More information about the Python-checkins mailing list