class A():
def __init__(self, data=''):
self.data = data
def __str__(self):
return str(self.data)
d = {}
elem = A()
d[elem] = 'abc'
elem2 = A()
print d[elem2] # KeyError
# actually elem2! was used not elem
how can I implement this without error?
EDIT:
FFFUUU, the error was:
I tried to get d[elem2] (not elem) with another instance of A() BUT with the same content. (shame on me)
Still.. how can I do this? redefine __hash__?
d[A()] = ...; print d[A()]? – delnan Mar 7 '11 at 15:10A. Did you overwrite any special methods? When posting error messages, please give the full error message, including the traceback. – Sven Marnach Mar 7 '11 at 15:14