Change the numeric value of DepPriority.MIN to be equal to that of a satisfied PDEPEN...
authorZac Medico <zmedico@gentoo.org>
Tue, 31 Jul 2007 01:21:01 +0000 (01:21 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 31 Jul 2007 01:21:01 +0000 (01:21 -0000)
svn path=/main/trunk/; revision=7528

pym/emerge/__init__.py

index de6766ffbc3fc65df1eb630d9314fe2917aa9274..74d83220cdd4c43a5a96c0ffa57f21ffb9198403 100644 (file)
@@ -700,7 +700,7 @@ class DepPriority(object):
        MEDIUM = -1
        MEDIUM_SOFT = -2
        SOFT   = -3
-       MIN    = -6
+       MIN    = -5
        def __init__(self, **kwargs):
                for myattr in self.__slots__:
                        if myattr == "__weakref__":
@@ -721,7 +721,7 @@ class DepPriority(object):
                        return -4
                if self.runtime_post:
                        return -5
-               return -6
+               return -5
        def __lt__(self, other):
                return self.__int__() < other
        def __le__(self, other):