Brian Kelley wrote:I should point out that using this method to explicitely close the storage is really exploiting python's garbage collector. While it works in Python 2.3 and below it may not work in python 2.4 and above. That's what I meant by a "cheap" solution. However, given the lack of storage.close() there are few alternatives.
globals.storage = None
or
del globals.storage
Brian
_______________________________________________ metakit mailing list - [EMAIL PROTECTED] http://www.equi4.com/mailman/listinfo/metakit
