On Fri, Mar 12, 2004 at 07:59:53AM -0800, Daniel Potter (Ars Analytica) wrote:
> The common approach seems to be to *not* use
> _q_exports but rather to use _q_lookup to return a
> fresh someclass instance.
Correct; something like this:
_q_exports = []
def _q_lookup (request, component):
    if component == 'someclassinstance':
        return someclass('foo')
Why isn't this solution acceptable for your requirements?
--amk