Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to create a 'container' object or class in Python, which keeps a record of other objects which I also define. One requirement of this container is that if two objects are deemed to be identical, one (either one) is removed. My first thought was to use a set([]) as the containing object, to complete this requirement.

However, the set does not remove one of the two identical object instances. What must I define to create one?

Here is the Python code.

class Item(object):
  def __init__(self, foo, bar):
    self.foo = foo
    self.bar = bar
  def __repr__(self):
    return "Item(%s, %s)" % (self.foo, self.bar)
  def __eq__(self, other):
    if isinstance(other, Item):
      return ((self.foo == other.foo) and (self.bar == other.bar))
    else:
      return False
  def __ne__(self, other):
    return (not self.__eq__(other))

Interpreter

>>> set([Item(1,2), Item(1,2)])
set([Item(1, 2), Item(1, 2)])

It is clear that __eq__(), which is called by x == y, is not the method called by the set. What is called? What other method must I define?

Note: The Items must remain mutable, and can change, so I cannot provide a __hash__() method. If this is the only way of doing it, then I will rewrite for use of immutable Items.

share|improve this question
4  
There is such a container that can keep track of mutable items and still check uniqueness efficiently .. it's called a database! – Jochen Ritzel Oct 15 '10 at 13:25
Had this same problem. I assume you are manipulating small amounts of data inside your code. This is probably not a good candidate for the use of a database. I remember being able to create a set and define a comparator function in C++ and I believe Java as well, however it doesn't look like you can do this with dictionary objects in Python. Seems like someone may have written a "set" library in Python that can do this, but I'm not aware of one. – Chris Dutrow May 13 at 22:12

1 Answer

up vote 4 down vote accepted

I am afraid you will have to provide a __hash__() method. But you can code it the way, that it does not depend on the mutable attributes of your Item.

share|improve this answer
1  
<docs.python.org/reference/…; In the second paragraph here, it points out that __hash__() should only be defined for immutable objects. – Nathanael Oct 15 '10 at 13:06
1  
@Nathanael: if the object may have to change, you can make an immutable copy of the object, like frozenset() and set(). – Lie Ryan Oct 15 '10 at 13:18
1  
@Nathanael - how would you like to call __eq__? Comparing those (1,2) attributes? Then you have to return some hash of (1,2) also in your __hash__ method. – eumiro Oct 15 '10 at 13:24
Or, since foo and bar are both immutable, the __hash__() could return the sum of the hashes of foo and bar? No... sum is too unrelible... if foo was 1 and bar 2, that would equal bar as 1 with foo as 2, which is wrong. What mathematical function can be used for this purpose? Modulo or division should work. – Nathanael Oct 15 '10 at 13:26
1  
Nathanael: Just use the hash builtin: hash((self.foo, self.bar)). This uses the tuple's hash, which is appropriate for your needs. (Your __eq__ could also be written in terms of tuple comparison.) – Piet Delport Oct 15 '10 at 13:30
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.