##// END OF EJS Templates
pep8: cleanup code of lru_debug
marcink -
r2077:79954a19 default
parent child Browse files
Show More
@@ -71,7 +71,7 b' class MemoryLRUNamespaceManagerBase(Memo'
71
71
72 def __init__(self, namespace, **kwargs):
72 def __init__(self, namespace, **kwargs):
73 AbstractDictionaryNSManager.__init__(self, namespace)
73 AbstractDictionaryNSManager.__init__(self, namespace)
74 if kwargs.has_key('max_items'):
74 if 'max_items' in kwargs:
75 max_items = kwargs['max_items']
75 max_items = kwargs['max_items']
76 else:
76 else:
77 max_items = self.default_max_items
77 max_items = self.default_max_items
General Comments 0
You need to be logged in to leave comments. Login now