# HG changeset patch # User Pierre-Yves David # Date 1412294570 18000 # Node ID d4706faa206105b7635b4f18b2576ca2e2c4ad61 # Parent e8832cf1abf697a86d6549b37621e2918807f8bd baseset: remove min/max methods This is now handled by the base class. diff -r e8832cf1abf6 -r d4706faa2061 mercurial/revset.py --- 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.