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