From: Ned Deily Date: Sun, 14 Sep 2014 06:39:16 +0000 (-0700) Subject: Issue #22168: Prevent turtle AttributeError with non-default Canvas on OS X. X-Git-Tag: v3.4.2rc1~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=152dfd1dac6b45177215486b68ac0ebda38dd507;p=python Issue #22168: Prevent turtle AttributeError with non-default Canvas on OS X. --- diff --git a/Lib/turtle.py b/Lib/turtle.py index c9e88d9dd1..f4400c90fd 100644 --- a/Lib/turtle.py +++ b/Lib/turtle.py @@ -997,8 +997,9 @@ class TurtleScreen(TurtleScreenBase): # Force Turtle window to the front on OS X. This is needed because # the Turtle window will show behind the Terminal window when you # start the demo from the command line. - cv._rootwindow.call('wm', 'attributes', '.', '-topmost', '1') - cv._rootwindow.call('wm', 'attributes', '.', '-topmost', '0') + rootwindow = cv.winfo_toplevel() + rootwindow.call('wm', 'attributes', '.', '-topmost', '1') + rootwindow.call('wm', 'attributes', '.', '-topmost', '0') def clear(self): """Delete all drawings and all turtles from the TurtleScreen. diff --git a/Misc/NEWS b/Misc/NEWS index 4e72496f8a..523965b447 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -32,6 +32,8 @@ Core and Builtins Library ------- +- Issue #22168: Prevent turtle AttributeError with non-default Canvas on OS X. + - Issue #21147: sqlite3 now raises an exception if the request contains a null character instead of truncate it. Based on patch by Victor Stinner.