Information gathering.

This commit is contained in:
Jeremy Fincher 2004-09-16 19:23:58 +00:00
parent f527ab0866
commit b19a2bb051

View File

@ -79,6 +79,15 @@ try:
return
else:
Connection.commit(self, *args, **kwargs)
def __del__(self):
try:
Connection.__del__(self)
except Exception, e:
try:
log.exception('Uncaught exception in __del__:')
except:
pass
sqlite.Connection = MyConnection
#del Connection.__del__
except ImportError: