# HG changeset patch # User Pierre-Yves David # Date 1412297253 18000 # Node ID 7bbc35c43bff783a37ed0a63681cfe45ed15f28e # Parent e76aec3eddc4fa3cde5a7e9d792d7e03de72c33d spanset: drop _orderedsetmixin inheritance The min/max method are as well provided by abstractsmartset. diff -r e76aec3eddc4 -r 7bbc35c43bff mercurial/revset.py --- a/mercurial/revset.py Fri Oct 03 01:44:52 2014 -0500 +++ b/mercurial/revset.py Thu Oct 02 19:47:33 2014 -0500 @@ -2786,7 +2786,7 @@ return _spanset(repo, start, end) -class _spanset(_orderedsetmixin, abstractsmartset): +class _spanset(abstractsmartset): """Duck type for baseset class which represents a range of revisions and can work lazily and without having all the range in memory