diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-25 22:22:55 -0400 |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-25 22:22:55 -0400 |
commit | 3be2e54adcc5c8fd87f5f21e09ee4a85d230f8c5 (patch) | |
tree | 27c1d2e167c5c445d8d4875eb0fb54844cb6f05e /Lib/idlelib/OutputWindow.py | |
parent | cbe16aefb8f19ff431fc2e12e8d35ef1d345dbc1 (diff) | |
download | cpython-git-3be2e54adcc5c8fd87f5f21e09ee4a85d230f8c5.tar.gz |
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 9dacc492b5..e614f9b2bb 100644 --- a/Lib/idlelib/OutputWindow.py +++ b/Lib/idlelib/OutputWindow.py @@ -91,7 +91,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) |