removed debugging print statement
This commit is contained in:
parent
f70267ec1c
commit
493e539487
@ -212,7 +212,6 @@ def memoize(f):
|
|||||||
cache = {}
|
cache = {}
|
||||||
def memf(*x, **kargs):
|
def memf(*x, **kargs):
|
||||||
if x not in cache:
|
if x not in cache:
|
||||||
print >>sys.stderr, x, kargs
|
|
||||||
cache[x] = f(*x, **kargs)
|
cache[x] = f(*x, **kargs)
|
||||||
return cache[x]
|
return cache[x]
|
||||||
return memf
|
return memf
|
||||||
|
Loading…
Reference in New Issue
Block a user