summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-10-31 04:26:06 +0000
committerZac Medico <zmedico@gentoo.org>2008-10-31 04:26:06 +0000
commitd0ad77f85ea7f55f2ff4f4cf580999b1308e4df1 (patch)
treed80cd70dec1b7fdaf901f8f94059850fa6cfc6bd /pym
parentaf4ab1375d0cd17b8d8c0e86d32236ef5daab898 (diff)
downloadportage-d0ad77f85ea7f55f2ff4f4cf580999b1308e4df1.tar.gz
portage-d0ad77f85ea7f55f2ff4f4cf580999b1308e4df1.tar.bz2
portage-d0ad77f85ea7f55f2ff4f4cf580999b1308e4df1.zip
Remove unused conditional_disabled and conditional_enabled attributes from
_use_dep.__slots__. svn path=/main/trunk/; revision=11761
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dep.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/dep.py b/pym/portage/dep.py
index b36a6bf5a..a6e67c3ee 100644
--- a/pym/portage/dep.py
+++ b/pym/portage/dep.py
@@ -341,8 +341,8 @@ def dep_opconvert(deplist):
class _use_dep(object):
- __slots__ = ("__weakref__", "conditional", "conditional_disabled",
- "conditional_enabled", "disabled", "enabled", "tokens", "required")
+ __slots__ = ("__weakref__", "conditional",
+ "disabled", "enabled", "tokens", "required")
_conditionals_class = portage.cache.mappings.slot_dict_class(
("disabled", "enabled", "equal", "not_equal"), prefix="")