cache: fix code style
This commit is contained in:
@@ -21,6 +21,7 @@ attribute.
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
class LRUCache(object):
|
class LRUCache(object):
|
||||||
"""A simple, generic, in-memory LRU cache that implements the standard
|
"""A simple, generic, in-memory LRU cache that implements the standard
|
||||||
python container interface.
|
python container interface.
|
||||||
@@ -40,6 +41,7 @@ class LRUCache(object):
|
|||||||
"""
|
"""
|
||||||
class _LinkNode(object):
|
class _LinkNode(object):
|
||||||
__slots__ = ['left', 'right', 'key', 'value']
|
__slots__ = ['left', 'right', 'key', 'value']
|
||||||
|
|
||||||
def __init__(self, l=None, r=None, k=None, v=None):
|
def __init__(self, l=None, r=None, k=None, v=None):
|
||||||
self.left = l
|
self.left = l
|
||||||
self.right = r
|
self.right = r
|
||||||
@@ -73,6 +75,7 @@ class LRUCache(object):
|
|||||||
# Initialize an empty cache of the same size for worker processes
|
# Initialize an empty cache of the same size for worker processes
|
||||||
def __getstate__(self):
|
def __getstate__(self):
|
||||||
return self.size
|
return self.size
|
||||||
|
|
||||||
def __setstate__(self, size):
|
def __setstate__(self, size):
|
||||||
self.__init__(size)
|
self.__init__(size)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user