I found the problem
Topic closed
On Sun, Mar 30, 2008 at 5:07 PM, David Anderson <[EMAIL PROTECTED]>
wrote:
> Here is the code:
> This one raises the error:
> def criaLista(self):
> self.listbox.Clear()
> for dupla in self.duplas:
> self.listbox.Append(dupla.__str__()
Here is the code:
This one raises the error:
def criaLista(self):
self.listbox.Clear()
for dupla in self.duplas:
self.listbox.Append(dupla.__str__())
This one works well but doesn't raises error
dupla1 = Duplas("2422", "2455")
dupla2 = Duplas("454", "15")
list = []
lis