Issue 1 in appengine-afterburner: memoize.py undefined symbol

0 views
Skip to first unread message

appengine-...@googlecode.com

unread,
Oct 19, 2011, 12:38:28 AM10/19/11
to appengine-...@googlegroups.com
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium

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

Reply all
Reply to author
Forward
0 new messages