[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 <rep...@bugs.python.org> <http://bugs.python.org/i

[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

[issue26377] Tkinter dialogs will not close if root window not packed.

2016-02-22 Thread Sam Yeager
Sam Yeager added the comment: Updated script with the adding 'parent-Rootwin' to messagebox() arguments. The issue persists. Following advice in #26376: Ran script on Terminal. The issue disappears, and everything works normally. Running through IDLE, the issue returns

[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 <rep...@bugs.python.org> <http://bugs.python.org/i

[issue26377] Tkinter dialogs will not close if root window not packed.

2016-02-19 Thread Sam Yeager
Changes by Sam Yeager <samyea...@gmail.com>: -- type: -> behavior ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue26377> ___ __

[issue26377] Tkinter dialogs will not close if root window not packed.

2016-02-19 Thread Sam Yeager
Changes by Sam Yeager <samyea...@gmail.com>: Added file: http://bugs.python.org/file41974/1 Before closing window and box.png ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue26377] Tkinter dialogs will not close if root window not packed.

2016-02-19 Thread Sam Yeager
Changes by Sam Yeager <samyea...@gmail.com>: Added file: http://bugs.python.org/file41975/2 After closing window and box.png ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

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

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

[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

[issue26377] Tkinter dialogs will not close if root window not packed.

2016-02-17 Thread Sam Yeager
New submission from Sam Yeager: Using the following code, the messagebox will not close, leaving it on top of all other open windows: from tkinter import * rootWin = Tk() messagebox.showinfo("Title", "foo") If the root window contains a widget (Label, Entry, Button, et

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

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

[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: