vote up 3 vote down star
3

What is the best way to compare two instances of some object for equality in Python? I'd like to be able to do something like

Example:

doc1 = ErrorDocument(path='/folder',title='Page')
doc2 = ErrorDocument(path='/folder',title='Page')

if doc1 == doc2: # this should be True
    #do something

EDIT:

To further clarify the question. I'd like to compare by attribute values, and to make a more generic solution than

def __eq__(self, other):
    return self.path == other.path and self.title == other.title

Should the __eq__() method look something like this?

def __eq__(self, other):
    # Is the other instance of the same object
    # Loop through __dict__ and compare values to attributes of other
flag
You almost got it, but you don't need to loop other dict because Python is able to check the equality between built-in types itself. Check my answer for a simple snippet. – e-satis Aug 4 at 12:48

5 Answers

vote up 5 vote down check

As usual with Python, it's kiss :

class Test(object) :

    def __init__(self, attr1, attr2) :
        self.attr1 = attr1
        self.attr2 = attr2

    def __str__(self) :
        return str(self.__dict__)

    def __eq__(self, other) : 
        return self.__dict__ == other.__dict__

t1 = Test("foo", 42)
t2 = Test("foo", 42)
t3 = Test("bar", 42)

print t1, t2, t3
print t1 == t2
print t2 == t3

It outputs :

{'attr2': 42, 'attr1': 'foo'} {'attr2': 42, 'attr1': 'foo'} {'attr2': 42, 'attr1': 'bar'}
True
False

N.B : be aware that before Python 3.0, you are more likely to use __cmp__ instead of __eq__, working the same way.

link|flag
1  
Good answer, but spaces before colons? That's a PEP 8 no-no ;) – Kiv Aug 4 at 20:38
1  
LOL, yeah i'm french, we write with spaces before colons, and before ? and ! too. Sometimes I even write comment in French, shame on me :-) – e-satis Aug 5 at 9:51
vote up 1 vote down

When comparing instances of objects, the cmp function is called.

If the == operator is not working for you by default, you can always redefine the cmp function for the object.

Edit:

As has been pointed out, the cmp function is deprecated since 3.0. Instead you should use the “rich comparison” methods.

link|flag
The cmp function is deprecated for 3.0+ – Christopher Aug 4 at 12:17
Yes, see stackoverflow.com/questions/1061283/… – Kiv Aug 4 at 12:18
Ah!You learn something new everyday;d – Silfverstrom Aug 4 at 12:19
vote up 2 vote down

Implement the __eq__ method in your class; something like this:

def __eq__(self, other):
    return self.path == other.path and self.title == other.title

Edit: if you want your objects to compare equal if and only if they have equal instance dictionaries:

def __eq__(self, other):
    return self.__dict__ == other.__dict__
link|flag
Perhaps you mean self is other to see if they are the same object. – S.Lott Aug 4 at 13:56
-1. Even if this is two dictionary instance, Python will compare them by keys / values automatically. This is not Java... – e-satis Aug 4 at 16:32
vote up 2 vote down

You override the rich comparison operators in your object.

class MyClass:
 def __lt__(self, other):
      # return comparison
 def __le__(self, other)
      # return comparison
 def __eq__(self, other)
      # return comparison
 def __ne__(self, other)
      # return comparison
 def __gt__(self, other)
      # return comparison
 def __ge__(self, other)
      # return comparison
link|flag
vote up -1 vote down

Instance of a class when compared with == comes to non-equal. The best way is to ass the cmp function to u r class which will do the stuff.

If u want to do comparison by the content u can simply use cmp(obj1,obj2)

In u r case cmp(doc1,doc2) It will return -1 if the content wise thy are same.

link|flag
-1, did you even read the other answers? – Kiv Aug 4 at 12:46

Your Answer

Get an OpenID
or

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