Skip to content
Snippets Groups Projects
Commit 8ae0ebcd authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #10801: Support instance methods

parent 40183dc0
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,9 @@ ...@@ -20,7 +20,9 @@
# #
# $id: __init__.py 1568 2015-09-18 15:21:11z loose $ # $id: __init__.py 1568 2015-09-18 15:21:11z loose $
class cache(dict): import functools
class cache(object):
""" A simple cache for function call return values in Python 2. """ A simple cache for function call return values in Python 2.
Use: Use:
...@@ -36,12 +38,16 @@ class cache(dict): ...@@ -36,12 +38,16 @@ class cache(dict):
def __init__(self, func): def __init__(self, func):
self.func = func self.func = func
self.cache = {}
def __call__(self, *args, **kwargs): def __call__(self, *args, **kwargs):
key = "%s %s" % (args, kwargs) # we can't hash on (args,kwargs) directly key = "%s %s" % (args, kwargs) # we can't hash on (args,kwargs) directly
if key not in self: if key not in self.cache:
self[key] = self.func(*args, **kwargs) self.cache[key] = self.func(*args, **kwargs)
return self[key] return self.cache[key]
def __get__(self, obj, objtype):
""" Support instance methods. """
return functools.partial(self.__call__, obj)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment