removed debugging print statement
This commit is contained in:
parent
f70267ec1c
commit
493e539487
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user