Mercurial > public > mercurial-scm > hg
diff mercurial/upgrade.py @ 32028:99f63f476a72
upgrade: implement '__ne__' on 'improvement' class
The pythonomicon request its implementation.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Mon, 17 Apr 2017 13:07:22 +0200 |
parents | 3c77f03f16b3 |
children | 9e35848fa007 |
line wrap: on
line diff
--- a/mercurial/upgrade.py Sun Apr 16 02:34:08 2017 +0200 +++ b/mercurial/upgrade.py Mon Apr 17 13:07:22 2017 +0200 @@ -144,6 +144,9 @@ return NotImplemented return self.name == other.name + def __ne__(self, other): + return not self == other + def finddeficiencies(repo): """returns a list of deficiencies that the repo suffer from""" newreporeqs = localrepo.newreporequirements(repo)