From 3be2e54adcc5c8fd87f5f21e09ee4a85d230f8c5 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 25 Sep 2015 22:22:55 -0400 Subject: 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. --- Lib/idlelib/OutputWindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/OutputWindow.py') 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) -- cgit v1.2.1