Re: [Tkinter-discuss] Unbinding Individual Events

2012-05-11 Thread Michael Lange
Hi, Thus spoketh Lion Kimbro unto us on Wed, 9 May 2012 19:19:55 -0700: (...) > So my thought to systematize this is: > > A. Make a function (fn-A) for making a Python list out all binding > strings on a widget-sequence pair. > B. Make a function (fn-B) that constructs the binding string

Re: [Tkinter-discuss] Unbinding Individual Events

2012-05-11 Thread Lion Kimbro
Beautiful. That's the solution. I've looked online for a long time, and nobody else came up with a solution. All that I found were the skeletal remains of those who needed to do this, but couldn't find a way. I really appreciate that your code works external to tkinter, and that it resp

Re: [Tkinter-discuss] Unbinding Individual Events

2012-05-11 Thread Michael Lange
Hi, Thus spoketh Lion Kimbro unto us on Fri, 11 May 2012 08:52:31 -0700: > Beautiful. > That's the solution. > > I've looked online for a long time, and nobody else came up with a > solution. > All that I found were the skeletal remains of those who needed to do > this, but couldn't fi

[Tkinter-discuss] Python 3.3.0a3 on Macs

2012-05-11 Thread Michael O'Donnell
Dear all, Just tried the latest release of Python 3.3.0a3 (v3.3.0a3:0b53b70a40a0, May 1 2012, 11:10:44) on my MacOSX Lion. It seems use of tkinter NoteBook breaks: from tkinter import * import tkinter.ttk root = Tk() nb=tkinter.ttk.Notebook(root) nb.pack(expand=True, fill=BOTH) nb.add(Canva

Re: [Tkinter-discuss] Python 3.3.0a3 on Macs

2012-05-11 Thread Ned Deily
In article , "Michael O'Donnell" wrote: > Just tried the latest release of Python 3.3.0a3 > (v3.3.0a3:0b53b70a40a0, May 1 2012, 11:10:44) > on my MacOSX Lion. > > It seems use of tkinter NoteBook breaks: > > from tkinter import * > import tkinter.ttk > root = Tk() > nb=tkinter.ttk.Noteboo