removed debugging print statement

This commit is contained in:
Stephen McQuay 2011-04-04 15:45:13 -06:00
parent f70267ec1c
commit 493e539487
1 changed files with 0 additions and 1 deletions

View File

@ -212,7 +212,6 @@ def memoize(f):
cache = {}
def memf(*x, **kargs):
if x not in cache:
print >>sys.stderr, x, kargs
cache[x] = f(*x, **kargs)
return cache[x]
return memf