From 43c4d23896437dbab9f6cfbe80e885394b84b638 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Mon, 14 Nov 2011 09:15:43 -0800 Subject: Explicitly test for inequality in JIDs. Fixes issue #113 --- sleekxmpp/xmlstream/jid.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'sleekxmpp') diff --git a/sleekxmpp/xmlstream/jid.py b/sleekxmpp/xmlstream/jid.py index 36b33056..3d617f5a 100644 --- a/sleekxmpp/xmlstream/jid.py +++ b/sleekxmpp/xmlstream/jid.py @@ -135,3 +135,9 @@ class JID(object): """ other = JID(other) return self.full == other.full + + def __ne__(self, other): + """ + Two JIDs are considered unequal if they are not equal. + """ + return not self == other -- cgit v1.2.3