[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/issue26376>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 
version 8.5.18, which matches the version ActiveTcl.

I'm not familiar with pythonw.exe as I've been using Mac.

Entering "idle 3.4" at Terminal opens IDLE as a separate app and Terminal waits 
until the app is closed. While running the script in the app, the issue 
persists.

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26376>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

--

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26377>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue26376>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue26377>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue26377>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue26376>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26376>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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, etc.), the dialog 
can close.
Similar results have been obtained with filedialog. 

OS: Mac OS X 10.10.5
Python IDE: IDLE 3.4.4
tkinter.TkVersion: 8.5
tkinter.TclVersion: 8.5
ActiveTcl: 8.6.4

--
components: IDLE, Macintosh, Tkinter
messages: 260401
nosy: Sam Yeager, ned.deily, ronaldoussoren
priority: normal
severity: normal
status: open
title: Tkinter dialogs will not close if root window not packed.
versions: Python 3.4

___
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue26377>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue26376>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
tkinter.TkVersion: 8.5
tkinter.TclVersion: 8.5
ActiveTcl: 8.6.4

--
components: IDLE, Macintosh, Tkinter
files: Screen Shot 2016-02-17 at 10.00.21 AM.png
messages: 260400
nosy: Sam Yeager, ned.deily, ronaldoussoren
priority: normal
severity: normal
status: open
title: Tkinter root window won't close if packed.
type: behavior
versions: Python 3.4
Added 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.org/issue26376>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com