[issue18686] Tkinter focus_get on menu causes crash

2013-08-08 Thread R. David Murray
R. David Murray added the comment: We use the 'crash' type for interpreter crashes (segfaults). So goes under the 'behavior' type. -- nosy: +r.david.murray type: crash -> behavior ___ Python tracker _

[issue18686] Tkinter focus_get on menu causes crash

2013-08-08 Thread Jeffrey Goeders
New submission from Jeffrey Goeders: I am experiencing a crash when calling focus_get() when a Tk Menu has focus. Here is sample code, just click the menu and it will crash. import Tkinter as tk class App(tk.Tk): def __init__(self, *args, **kw): tk.Tk.__init__(self, *args, **kw)