diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-26 02:22:48 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-26 02:22:48 (GMT) |
commit | 8bfacc798559bb99bc9e13060b9ff23234760c1f (patch) | |
tree | ca5f10b4edd45a3b63fbd693c4a5bfe252df7c12 /Lib/idlelib/OutputWindow.py | |
parent | 647412fb89521a2f939852caed06985fb35f156b (diff) | |
download | cpython-8bfacc798559bb99bc9e13060b9ff23234760c1f.zip cpython-8bfacc798559bb99bc9e13060b9ff23234760c1f.tar.gz cpython-8bfacc798559bb99bc9e13060b9ff23234760c1f.tar.bz2 |
Issue #25173: Replace 'master' with 'parent' in tkinter.messagebox calls.
This associates the message box with the widget and is better for Mac OSX.
Patch by Mark Roseman.
Diffstat (limited to 'Lib/idlelib/OutputWindow.py')
-rw-r--r-- | Lib/idlelib/OutputWindow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/OutputWindow.py b/Lib/idlelib/OutputWindow.py index e18d846..63dc737 100644 --- a/Lib/idlelib/OutputWindow.py +++ b/Lib/idlelib/OutputWindow.py @@ -96,7 +96,7 @@ class OutputWindow(EditorWindow): "No special line", "The line you point at doesn't look like " "a valid file name followed by a line number.", - master=self.text) + parent=self.text) return filename, lineno = result edit = self.flist.open(filename) |