# HG changeset patch # User Lucas Moscovicz # Date 1394735805 25200 # Node ID 91a3d50f0e3a7f53f13eda447e688deb97a51fdd # Parent d4f2f2d7421049d5f3ea39c8f47a3eec3e04ffdd revset: changed orderedlazyset to also extend _orderedsetmixin Now orderedlazyset can use the lazy min and max implementation. diff -r d4f2f2d74210 -r 91a3d50f0e3a mercurial/revset.py --- a/mercurial/revset.py Thu Mar 13 11:36:11 2014 -0700 +++ b/mercurial/revset.py Thu Mar 13 11:36:45 2014 -0700 @@ -2367,7 +2367,7 @@ def filter(self, l): return lazyset(self, l) -class orderedlazyset(lazyset): +class orderedlazyset(_orderedsetmixin, lazyset): """Subclass of lazyset which subset can be ordered either ascending or descendingly """