5
Sto usando un decoratore:Come usare doctest con una funzione decorata in python?
class Memoized(object):
__cache = {}
def __init__(self, func):
self.func = func
key = (func.__module__, func.__name__)
# print key
if key not in self.__cache:
self.__cache[key] = {}
self.mycache = self.__cache[key]
def __call__(self, *args):
try:
return self.mycache[args]
except KeyError:
value = self.func(*args)
self.mycache[args] = value
return value
except TypeError:
return self.func(*args)
def __get__(self, obj, objtype):
return functools.partial(self.__call__, obj)
def reset(self):
for v in self.__cache.itervalues():
v.clear()
e una funzione:
@Memoized
def is_tile_inside_border(x, y, z, border):
'''Checks if a tile is inside border or not
>>> is_tile_inside_border(85,53,7,'iran')
3
>>> is_tile_inside_border(85,15,7,'iran')
0
'''
binary_data = get_border_binary(border, z)
return isInside((x, y), binary_data)
Ma quando si utilizza doctest modulo (python mycode.py -v):
if __name__ == '__main__':
import doctest
doctest.testmod()
Python può' t trovare il test in doc-string. So che questo è un problema con il decoratore. Ma come posso aggiustarlo?
PS: functools.update_wrapper(self, func)
non funziona!
Hai provato la functools.wraps' decoratore '? http://stackoverflow.com/questions/308999/what-does-functools-wraps-do –
[ticket rilevante] (http://bugs.python.org/issue1108) – shx2
@AndrewGorcester Ho studiato il collegamento, grazie. Ma io sto ferendo come posso usare * wraps * in un decoratore CLASS? – Farsheed