changeset 22752:7bbc35c43bff

spanset: drop _orderedsetmixin inheritance The min/max method are as well provided by abstractsmartset.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Thu, 02 Oct 2014 19:47:33 -0500
parents e76aec3eddc4
children 16c20403de80
files mercurial/revset.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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