[issue11571] Turtle window pops under the terminal on OSX

2014-08-23 Thread Ned Deily
Ned Deily added the comment: As identified in Issue22168, the changes introduced here do not work when the user supplies a Canvas rather than relying on the turtle default. There is a patch there that should solve that issue. But I now think that the original approach was not an ideal soluti

[issue11571] Turtle window pops under the terminal on OSX

2014-04-19 Thread Ned Deily
Changes by Ned Deily : -- versions: +Python 3.4, Python 3.5 -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs

[issue11571] Turtle window pops under the terminal on OSX

2014-04-19 Thread Ned Deily
Ned Deily added the comment: The fix for turtle has been applied for release in 3.4.1 and 3.5.0. -- resolution: wont fix -> fixed stage: commit review -> resolved ___ Python tracker

[issue11571] Turtle window pops under the terminal on OSX

2014-04-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1f3946b22e64 by Ned Deily in branch '3.4': Issue #11571: Ensure that the turtle window becomes the topmost window http://hg.python.org/cpython/rev/1f3946b22e64 New changeset 01228d7b5e01 by Ned Deily in branch 'default': Issue #11571: merge with 3.4

[issue11571] Turtle window pops under the terminal on OSX

2013-11-24 Thread James Cook
James Cook added the comment: This problem still exists with the version of turtle bundled with python 3.3.3 and ActiveState ActiveTcl8.5.15.1. While it may be an issue with the underlying platform, it's unfortunate for young beginners just learning python who don't understand the underlying

[issue11571] Turtle window pops under the terminal on OSX

2013-07-31 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___ Python-bugs-list maili

[issue11571] Turtle window pops under the terminal on OSX

2013-07-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm revisiting some old issues, and while I don't mind adding workarounds to the various scripts I do not consider this to be a bug. This is unexpected behavior from the platform, and only affects running scripts from the command-line (bundling the script in

[issue11571] Turtle window pops under the terminal on OSX

2012-05-19 Thread Ned Deily
Ned Deily added the comment: Marc, it could although that would be a change in behavior that possibly might not be desired by all tkinter apps. Perhaps the thing to do is add an optional "topmost" argument to tkinter.Tk() with the default value being True. --

[issue11571] Turtle window pops under the terminal on OSX

2012-05-19 Thread Ned Deily
Changes by Ned Deily : Removed file: http://bugs.python.org/file21581/unnamed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue11571] Turtle window pops under the terminal on OSX

2012-05-19 Thread Marc Abramowitz
Marc Abramowitz added the comment: I wonder if this could be applied at some lower level in TkInter, because this bug happens with every Tk app -- e.g.: turtle, idle, web2py -- nosy: +Marc.Abramowitz ___ Python tracker

[issue11571] Turtle window pops under the terminal on OSX

2011-04-08 Thread Ronald Oussoren
Ronald Oussoren added the comment: On 07 Apr, 2011,at 07:03 PM, Alexander Belopolsky wrote: Alexander Belopolsky added the comment: While you are at it, can you also fix the same issue with "python -m tkinter"?   Sure, I can add a hack to that module as well. Ronald -- Added file

[issue11571] Turtle window pops under the terminal on OSX

2011-04-07 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue11571] Turtle window pops under the terminal on OSX

2011-04-07 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: .. and "python -m turtledemo"? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue11571] Turtle window pops under the terminal on OSX

2011-04-07 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: While you are at it, can you also fix the same issue with "python -m tkinter"? -- ___ Python tracker ___

[issue11571] Turtle window pops under the terminal on OSX

2011-04-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: +1 on applying the patch. I can do so on Sunday but feel to apply the patch before that. -- ___ Python tracker ___ _

[issue11571] Turtle window pops under the terminal on OSX

2011-04-03 Thread Ned Deily
Ned Deily added the comment: Looks good to me. I tested on OS X with both Tk 8.5 on 10.6 and Tk 8.4 on 10.5. The demo runs fine under IDLE.app and bin/idle3. If no objections, I'll commit the patch with the nit addressed. -- keywords: +patch stage: -> commit review versions: +Pyth

[issue11571] Turtle window pops under the terminal on OSX

2011-03-16 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: On Wed, Mar 16, 2011 at 11:26 AM, Ronald Oussoren wrote: .. > The attached patch forces the window to the front by first making the window > a topmost window and then resetting that flag. > > Could you test if this does want you'd like it to? Yes, this w

[issue11571] Turtle window pops under the terminal on OSX

2011-03-16 Thread Ronald Oussoren
Ronald Oussoren added the comment: The attached patch forces the window to the front by first making the window a topmost window and then resetting that flag. Could you test if this does want you'd like it to? (The patch is for 3.3, will backport upto 2.7 when the behavior is correct) --

[issue11571] Turtle window pops under the terminal on OSX

2011-03-16 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- dependencies: +Tkinter windows pop under the terminal in OSX ___ Python tracker ___ ___ Python-bu

[issue11571] Turtle window pops under the terminal on OSX

2011-03-16 Thread Alexander Belopolsky
New submission from Alexander Belopolsky : If you have a large enough terminal window and run $ python -m turtle on OSX, you will see nothing because turtle screen pops under the terminal. Ned Deily suggested in msg130421 that this can be fixed by setting "-topmost" WM attribute on the root w