Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11761 - main/trunk/pym/portage
Date: Fri, 31 Oct 2008 04:26:09
Message-Id: E1KvlaI-0008RO-KZ@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-10-31 04:26:06 +0000 (Fri, 31 Oct 2008)
3 New Revision: 11761
4
5 Modified:
6 main/trunk/pym/portage/dep.py
7 Log:
8 Remove unused conditional_disabled and conditional_enabled attributes from
9 _use_dep.__slots__.
10
11
12 Modified: main/trunk/pym/portage/dep.py
13 ===================================================================
14 --- main/trunk/pym/portage/dep.py 2008-10-31 04:01:49 UTC (rev 11760)
15 +++ main/trunk/pym/portage/dep.py 2008-10-31 04:26:06 UTC (rev 11761)
16 @@ -341,8 +341,8 @@
17
18 class _use_dep(object):
19
20 - __slots__ = ("__weakref__", "conditional", "conditional_disabled",
21 - "conditional_enabled", "disabled", "enabled", "tokens", "required")
22 + __slots__ = ("__weakref__", "conditional",
23 + "disabled", "enabled", "tokens", "required")
24
25 _conditionals_class = portage.cache.mappings.slot_dict_class(
26 ("disabled", "enabled", "equal", "not_equal"), prefix="")