Re: dynamically created names / simple problem

2008-03-25 Thread John Nagle
Robert Bossy wrote: > Jules Stevenson wrote: >> >> Hello all, >> >> I'm fairly green to python and programming, so please go gently. The >> following code >> >> for display in secondary: >> >> self.("so_active_"+display) = wx.CheckBox(self.so_panel, -1, >> "checkbox_2") >> >> Errors, because of t

RE: dynamically created names / simple problem

2008-03-25 Thread Jules Stevenson
Brilliant. Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: dynamically created names / simple problem

2008-03-25 Thread Robert Bossy
Robert Bossy wrote: > Jules Stevenson wrote: > >> Hello all, >> >> I'm fairly green to python and programming, so please go gently. The >> following code >> >> for display in secondary: >> >> self.("so_active_"+display) = wx.CheckBox(self.so_panel, -1, "checkbox_2") >> >> Errors, because of the

Re: dynamically created names / simple problem

2008-03-25 Thread Robert Bossy
Jules Stevenson wrote: > > Hello all, > > I'm fairly green to python and programming, so please go gently. The > following code > > for display in secondary: > > self.("so_active_"+display) = wx.CheckBox(self.so_panel, -1, "checkbox_2") > > Errors, because of the apparent nastyness at the beginnin