New issue 1 by derek.li...@gmail.com: memoize.py undefined symbol
http://code.google.com/p/appengine-afterburner/issues/detail?id=1
What steps will reproduce the problem?
undefined symbol in the last line of the file:
return decorator if not DEBUG else f
where f is undefined
What is the expected output? What do you see instead?
replace the above line with the following will work
def empty_decorator(f):
def empty_wrapper(*args, **kwargs):
return f(*args, **kwargs)
return empty_wrapper
return decorator if not DEBUG else empty_decorator