27
27
"""This maintains the linked-list which is the lru internals."""
29
__slots__ = ('prev', 'next_key', 'key', 'value', 'cleanup', 'size')
29
__slots__ = ('prev', 'next_key', 'key', 'value', 'cleanup')
31
31
def __init__(self, key, value, cleanup=None):