From: Zac Medico Date: Wed, 18 Oct 2006 10:09:42 +0000 (-0000) Subject: Add __weakref__ to __slots__ so that weakref support isn't disabled. X-Git-Tag: v2.1.2~604 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=da48b4029f0f388f366f3be90e6513647cdb400d;p=portage.git Add __weakref__ to __slots__ so that weakref support isn't disabled. svn path=/main/trunk/; revision=4749 --- diff --git a/bin/emerge b/bin/emerge index 1bc29c916..47a1f32fe 100755 --- a/bin/emerge +++ b/bin/emerge @@ -655,7 +655,7 @@ class DepPriority(object): SOFT The upper boundary for soft dependencies. MIN The lower boundary for soft dependencies. """ - __slots__ = ["satisfied", "buildtime", "runtime"] + __slots__ = ["__weakref__", "satisfied", "buildtime", "runtime"] MEDIUM = -1 SOFT = -2 MIN = -4