[Zope3-dev] Leak in zope.component?

2007-08-22 Thread Christian Zagrodnick
Hi, I'm doing things wich z3c.zalchemy and trying to find out why my database connections are kept open even after unregistering everything. Given the following very simple test: import sys import zope.component import zope.interface class IUtil(zope.interface.Interface): ... pass

Re: [Zope3-dev] Leak in zope.component?

2007-08-22 Thread Jim Fulton
On Aug 22, 2007, at 8:16 AM, Christian Zagrodnick wrote: Hi, I'm doing things wich z3c.zalchemy and trying to find out why my database connections are kept open even after unregistering everything. Given the following very simple test: import sys import zope.component import