Antoine wrote:
> try:
> self.db_transaction.commit()
> then:
> self.tmpoutfile.close()
> then:
> self.destroy_shared_memory_handle()
> except Exception, e:
> logging.error("an exception occurred in cleanup: %s", e)
Can you explain the difference to:
try:
self.db_transaction.commit()
self.tmpoutfile.close()
self.destroy_shared_memory_handle()
except Exception, e:
logging.error("an exception occurred in cleanup: %s", e)
Geor
_______________________________________________
Python-3000 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe:
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com