Mercurial > hg
changeset 22723:d4706faa2061
baseset: remove min/max methods
This is now handled by the base class.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Thu, 02 Oct 2014 19:02:50 -0500 |
parents | e8832cf1abf6 |
children | abdb46cf3b38 |
files | mercurial/revset.py |
diffstat | 1 files changed, 0 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/revset.py Thu Oct 02 18:59:41 2014 -0500 +++ b/mercurial/revset.py Thu Oct 02 19:02:50 2014 -0500 @@ -2307,12 +2307,6 @@ super(baseset, self).__init__(data) self._set = None - def min(self): - return min(self) - - def max(self): - return max(self) - def set(self): """Returns a set or a smartset containing all the elements.