From: Thomas L. <tho...@go...> - 2010-03-16 13:33:34
|
william Gunnells <gunnells <at> gmail.com> writes: > > oh and this does not work either: self.components.List1.items = l > For me self.components.items = ['a', 'b', 'c'] worked fine. For integers i would suggest self.components.items = [str(i) for i in a] with a = [1,2,3] # or some other in array |