diff -r 9bdedb050d8d -r 6557f0d4ab8e mercurial/upgrade.py --- a/mercurial/upgrade.py Mon Apr 10 22:15:17 2017 +0200 +++ b/mercurial/upgrade.py Mon Apr 10 23:10:03 2017 +0200 @@ -138,6 +138,12 @@ for k, v in kwargs.items(): setattr(self, k, v) + def __eq__(self, other): + if not isinstance(other, improvement): + # This is what python tell use to do + return NotImplemented + return self.name == other.name + def finddeficiencies(repo): """returns a list of deficiencies that the repo suffer from""" newreporeqs = localrepo.newreporequirements(repo)