MobileBlur

Diff
Login

Differences From Artifact [a551f0ccc4]:

To Artifact [8c94ff18c0]:


113
114
115
116
117
118
119

        if isinstance(other, OrderedDict):
            return len(self)==len(other) and \
                   all(p==q for p, q in  zip(self.items(), other.items()))
        return dict.__eq__(self, other)

    def __ne__(self, other):
        return not self == other








>
113
114
115
116
117
118
119
120
        if isinstance(other, OrderedDict):
            return len(self)==len(other) and \
                   all(p==q for p, q in  zip(self.items(), other.items()))
        return dict.__eq__(self, other)

    def __ne__(self, other):
        return not self == other