Re: [Python-Dev] Some changes to logging for 3.2

2010-09-27 Thread Chris Withers
On 24/09/2010 12:06, Vinay Sajip wrote: http://plumberjack.blogspot.com/2010/09/improved-queuehandler-queuelistener.html Cool, how can I use it in Python 2.6? :-) 1. Copy the top part (imports, QueueHandler and QueueListener classes) from the Gist linked to in the article - http://gist.gith

Re: [Python-Dev] Some changes to logging for 3.2

2010-09-24 Thread Vinay Sajip
Chris Withers simplistix.co.uk> writes: > > Cool, how can I use it in Python 2.6? > > Chris Hi Chris, 1. Copy the top part (imports, QueueHandler and QueueListener classes) from the Gist linked to in the article - http://gist.github.com/591699 - into a utility module you can use again and ag

Re: [Python-Dev] Some changes to logging for 3.2

2010-09-24 Thread Chris Withers
On 22/09/2010 16:54, Vinay Sajip wrote: I'm planning to make some smallish changes to logging in Python 3.2, please see http://plumberjack.blogspot.com/2010/09/improved-queuehandler-queuelistener.html If you're interested, I'd be grateful for any feedback you can give. Cool, how can I use it

Re: [Python-Dev] Some changes to logging for 3.2

2010-09-22 Thread Vinay Sajip
Nick Coghlan gmail.com> writes: > To further reduce overhead, would it make sense for the signature of > the QueueListener constructor to be (queue, *handlers)? Good suggestion - thanks. Regards, Vinay ___ Python-Dev mailing list Python-Dev@pytho

Re: [Python-Dev] Some changes to logging for 3.2

2010-09-22 Thread Nick Coghlan
On Thu, Sep 23, 2010 at 1:54 AM, Vinay Sajip wrote: > Hi all, > > I'm planning to make some smallish changes to logging in Python 3.2, please > see > > http://plumberjack.blogspot.com/2010/09/improved-queuehandler-queuelistener.html > > If you're interested, I'd be grateful for any feedback you c

[Python-Dev] Some changes to logging for 3.2

2010-09-22 Thread Vinay Sajip
Hi all, I'm planning to make some smallish changes to logging in Python 3.2, please see http://plumberjack.blogspot.com/2010/09/improved-queuehandler-queuelistener.html If you're interested, I'd be grateful for any feedback you can give. Regards, Vinay Sajip __