On 16 May 2002, Neil Schemenauer said:
> On Thu, May 16, 2002 at 09:52:59AM -0400, Greg Ward wrote:
> > Not quite: there's still a global request object
>
> That could be attached to the publisher as well.
Doesn't solve the problem -- in a multi-threaded app, one publisher
could have many active requests. It does reduce the number of globals,
though, and that's always a good thing. The dict of thread-ids to
request objects should still work too.
Greg