Getting back an Object

David Anderson zerty.david at gmail.com
Thu Mar 27 21:40:41 EDT 2008


Well, I've got a little problem, I have a list that contains objects from
the class C, then I use those objects.__str__ to generate a ListCtrl, A
wxPython widget that makes a list of strings and then you can handle events
when selected, and returns the string selcted, how can I access the "parent"
of that string?
I tried to search on the array like this:
def search(self, string):
      for obj in self.list:
           if string == obj.__str__:
                 return obj
       return None

But I always get None... What am I doing wrong?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20080327/4750a11e/attachment.html>


More information about the Python-list mailing list