summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipalib/plugable.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index 7602bce3..fe4a4531 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -175,8 +175,6 @@ class NameSpace(ReadOnly):
both as instance attributes and as dictionary items.
"""
- __max_len = None
-
def __init__(self, items, base=None):
"""
`items` should be an iterable providing the members of this
@@ -231,12 +229,6 @@ class NameSpace(ReadOnly):
return self.__hname[key]
raise KeyError('NameSpace has no item for key %r' % key)
- def __call__(self):
- if self.__max_len is None:
- ml = max(len(k) for k in self.__pname)
- object.__setattr__(self, '_NameSpace__max_len', ml)
- return self.__max_len
-
def __repr__(self):
if self.__base is None:
base = repr(self.__base)
@@ -245,9 +237,6 @@ class NameSpace(ReadOnly):
return '%s(*proxies, base=%s)' % (self.__class__.__name__, base)
-
-
-
class Registrar(object):
def __init__(self, *allowed):
"""