Re: Tkinter, StringVar and dict

2006-12-22 Thread Kevin Walzer
James Stroud wrote: > Kevin Walzer wrote: >> I'm trying to manage user preferences in a Tkinter application by >> initializing some values that can then be configured from a GUI. The >> values are set up as a dict, like so: >> >> self.prefs= { >> 'interface': '-en1', >>

Re: Tkinter, StringVar and dict

2006-12-20 Thread James Stroud
Kevin Walzer wrote: > I'm trying to manage user preferences in a Tkinter application by > initializing some values that can then be configured from a GUI. The > values are set up as a dict, like so: > > self.prefs= { > 'interface': '-en1', > 'verbose': '-v', >

Re: Tkinter, StringVar and dict

2006-12-20 Thread James Stroud
Kevin Walzer wrote: > I'm trying to manage user preferences in a Tkinter application by > initializing some values that can then be configured from a GUI. The > values are set up as a dict, like so: > > self.prefs= { > 'interface': '-en1', > 'verbose': '-v', >

Re: Tkinter, StringVar and dict

2006-12-20 Thread James Stroud
Kevin Walzer wrote: > I'm trying to manage user preferences in a Tkinter application by > initializing some values that can then be configured from a GUI. The > values are set up as a dict, like so: > > self.prefs= { > 'interface': '-en1', > 'verbose': '-v', >

Tkinter, StringVar and dict

2006-12-20 Thread Kevin Walzer
I'm trying to manage user preferences in a Tkinter application by initializing some values that can then be configured from a GUI. The values are set up as a dict, like so: self.prefs= { 'interface': '-en1', 'verbose': '-v', 'fontname': 'Courier',