[issue26376] Tkinter root window won't close if packed.

2020-10-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: I just reproduced this too with Airbook Mohave. When IDLE's Shell is running, it is linked to an execution subprocess that is initially invisible, unless and until the user creates a visible window. Tk() does this. On Windows, a tk Window icon appears

[issue26376] Tkinter root window won't close if packed.

2020-10-19 Thread Ned Deily
Ned Deily added the comment: Unfortunately, I can reproduce it, or at least odd behavior when run from an IDLE.app edit window on with 3.9.0 on macOS 10.15. By observing the macOS Dock while running this, it looks like a second Python app instance is created while running this. We have seen

[issue26376] Tkinter root window won't close if packed.

2020-10-19 Thread Ronald Oussoren
Ronald Oussoren added the comment: I cannot reproduce this issue with Python 3.9 (Python.org installer). Both with "Run Module" and in the interactive shell (both in IDLE) the window will close properly. In both cases the window it too small to show the minimise and maximise buttons (as

[issue26376] Tkinter root window won't close if packed.

2016-02-24 Thread Sam Yeager
Sam Yeager added the comment: This occurs even when the window is large and/or packed with multiple elements. -- ___ Python tracker ___

[issue26376] Tkinter root window won't close if packed.

2016-02-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If the problem is that the window is too small to contain the close icon, this is not Python issue. May be this is Tk issue or end application issue. -- ___ Python tracker

[issue26376] Tkinter root window won't close if packed.

2016-02-23 Thread Sam Yeager
Sam Yeager added the comment: It's almost certainly only found on OSX. I'm currently taking a Python class of approximately 150 students, and at least two of us independently found this issue on our respective Macs. IDLE and Python are the same version (v3.4.4). The info window lists Tk as

[issue26376] Tkinter root window won't close if packed.

2016-02-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I was running from IDLE when I said no problem on Windows, so this is OSX specific. Are you running same version of python (splash message) and tcl/tk? (on IDLE, Help => About IDLE). Does Python on OSX have equivalent of pythonw.exe? If you start IDLE at

[issue26376] Tkinter root window won't close if packed.

2016-02-22 Thread Sam Yeager
Sam Yeager added the comment: Ran script on Terminal. The issue disappears, and everything works normally. Running through IDLE, the issue returns. Sorry, Terry. -- ___ Python tracker

[issue26376] Tkinter root window won't close if packed.

2016-02-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: No problem on Windows either, where the minimum window width is wide enough to acommodate all 3 frame buttons (- [] X). Please run your test.py directly, either in the terminal or however else one does so on OSX, without IDLE, to make absolutely sure that

[issue26376] Tkinter root window won't close if packed.

2016-02-19 Thread Sam Yeager
Changes by Sam Yeager : Added file: http://bugs.python.org/file41973/2 After closing root window.png ___ Python tracker ___

[issue26376] Tkinter root window won't close if packed.

2016-02-19 Thread Sam Yeager
Sam Yeager added the comment: I've reverted to ActiveTcl 8.5.18. Issue persists. Uploading screenshots before and after attempting to close root window. -- Added file: http://bugs.python.org/file41972/1 Before closing root window.png ___ Python

[issue26376] Tkinter root window won't close if packed.

2016-02-17 Thread Ned Deily
Ned Deily added the comment: Also note that installing ActiveTcl 8.6.x has no effect if the tkinter in use was linked with an 8.5 version of Tcl/Tk, as the one you are using apparently was. Make sure you have installed the latest version of ActiveTcl 8.5.x and try again. --

[issue26376] Tkinter root window won't close if packed.

2016-02-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What do you mean with "properly"? All looks good to me on Linux. -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue26376] Tkinter root window won't close if packed.

2016-02-17 Thread Sam Yeager
Changes by Sam Yeager : Removed file: http://bugs.python.org/file41942/Screen Shot 2016-02-17 at 10.00.21 AM.png ___ Python tracker ___

[issue26376] Tkinter root window won't close if packed.

2016-02-17 Thread Sam Yeager
New submission from Sam Yeager: Using the following code, the root window will not close properly when the close icon is clicked: from tkinter import * rootWin = Tk() l = Label(rootWin, text="foo") l.pack() Similar issue occurs with Tk.grid(). OS: Mac OS X 10.10.5 Python IDE: IDLE 3.4.4