From 308daa12820bb4b41c5bcb097da1763a2867518c Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 10 Mar 2009 04:49:10 +0000 Subject: Simplify cmp_sort_key._cmp_key.__lt__(). svn path=/main/trunk/; revision=12817 --- pym/portage/util.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pym/portage/util.py b/pym/portage/util.py index a881bd77f..c78c3b2f9 100644 --- a/pym/portage/util.py +++ b/pym/portage/util.py @@ -668,12 +668,10 @@ class cmp_sort_key(object): self._obj = obj def __lt__(self, other): - if not isinstance(other, self.__class__): + if other.__class__ is not self.__class__: raise TypeError("Expected type %s, got %s" % \ (self.__class__, other.__class__)) - if self._cmp_func(self._obj, other._obj) < 0: - return True - return False + return self._cmp_func(self._obj, other._obj) < 0 def unique_array(s): """lifted from python cookbook, credit: Tim Peters -- cgit v1.2.3-1-g7c22