summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-02-02 23:53:45 +0000
committerZac Medico <zmedico@gentoo.org>2009-02-02 23:53:45 +0000
commit206b08f3e465b54e15d50564ee8168e84303bafa (patch)
tree2e0269e28fa9ae3eb899edd3bda7a6117e57702e /pym
parent062708caaebd000ef7398e769397302b2f99825a (diff)
downloadportage-206b08f3e465b54e15d50564ee8168e84303bafa.tar.gz
portage-206b08f3e465b54e15d50564ee8168e84303bafa.tar.bz2
portage-206b08f3e465b54e15d50564ee8168e84303bafa.zip
Add a cmp_sort_key class which makes it easier to port code for python-3.0
compatibility. It works by generating key objects which use the given cmp function to implement their __lt__ method. svn path=/main/trunk/; revision=12571
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/util.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/pym/portage/util.py b/pym/portage/util.py
index ab7214070..def0d3e40 100644
--- a/pym/portage/util.py
+++ b/pym/portage/util.py
@@ -605,6 +605,42 @@ def dump_traceback(msg, noiselevel=1):
writemsg(error+"\n", noiselevel=noiselevel)
writemsg("====================================\n\n", noiselevel=noiselevel)
+class cmp_sort_key(object):
+ """
+ In python-3.0 the list.sort() method no longer has a "cmp" keyword
+ argument. This class acts as an adapter which converts a cmp function
+ into one that's suitable for use as the "key" keyword argument to
+ list.sort(), making it easier to port code for python-3.0 compatibility.
+ It works by generating key objects which use the given cmp function to
+ implement their __lt__ method.
+ """
+ __slots__ = ("_cmp_func",)
+
+ def __init__(self, cmp_func):
+ """
+ @type cmp_func: callable which takes 2 positional arguments
+ @param cmp_func: A cmp function.
+ """
+ self._cmp_func = cmp_func
+
+ def __call__(self, lhs):
+ return self._cmp_key(self._cmp_func, lhs)
+
+ class _cmp_key(object):
+ __slots__ = ("_cmp_func", "_obj")
+
+ def __init__(self, cmp_func, obj):
+ self._cmp_func = cmp_func
+ self._obj = obj
+
+ def __lt__(self, other):
+ if not isinstance(other, 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
+
def unique_array(s):
"""lifted from python cookbook, credit: Tim Peters
Return a list of the elements in s in arbitrary order, sans duplicates"""