summaryrefslogtreecommitdiff
path: root/lib/spack/spack/spec.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/spack/spack/spec.py')
-rw-r--r--lib/spack/spack/spec.py16
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/spack/spack/spec.py b/lib/spack/spack/spec.py
index 03a372be4e..926f35a704 100644
--- a/lib/spack/spack/spec.py
+++ b/lib/spack/spack/spec.py
@@ -1431,8 +1431,6 @@ def tree(
class Spec:
#: Cache for spec's prefix, computed lazily in the corresponding property
_prefix = None
- #: Cache for spec's length, computed lazily in the corresponding property
- _length = None
abstract_hash = None
@staticmethod
@@ -3702,18 +3700,6 @@ class Spec:
return child
- def __len__(self):
- if not self.concrete:
- raise spack.error.SpecError(f"Cannot get length of abstract spec: {self}")
-
- if not self._length:
- self._length = 1 + sum(len(dep) for dep in self.dependencies())
- return self._length
-
- def __bool__(self):
- # Need to define this so __len__ isn't used by default
- return True
-
def __contains__(self, spec):
"""True if this spec or some dependency satisfies the spec.
@@ -4472,7 +4458,7 @@ class Spec:
if h.attr not in ignore:
if hasattr(self, h.attr):
setattr(self, h.attr, None)
- for attr in ("_dunder_hash", "_prefix", "_length"):
+ for attr in ("_dunder_hash", "_prefix"):
if attr not in ignore:
setattr(self, attr, None)