commented out the print statements

master
Abhinav Sarkar 2009-03-31 15:53:23 +00:00
parent 28d4368c42
commit a818e7a9e6
1 changed files with 2 additions and 2 deletions

View File

@ -30,10 +30,10 @@ class ObjectCache(object):
_registry[cls_name] = WeakValueDictionary()
if key in _registry[cls_name]:
ob = _registry[cls_name][key]
print "already registered: %s" % repr(ob)
#print "already registered: %s" % repr(ob)
return (ob, True)
else:
print "not already registered: %s" % ob.__class__
#print "not already registered: %s" % ob.__class__
_registry[cls_name][key] = ob
return (ob, False)