remove print

This commit is contained in:
Denis Bilenko
2009-05-19 17:34:28 +07:00
parent 16faead13d
commit 87e005003a

View File

@@ -10,7 +10,6 @@ class local(object):
self.__dict__['__objs'] = {}
def __getattr__(self, attr, g=get_ident):
print "getattr", self, attr, g
try:
return self.__dict__['__objs'][g()][attr]
except KeyError: