Re: [Python-Dev] Logging enhancements

2006-01-10 Thread Mark Hammond
Shane: > Vinay Sajip wrote: > > I'd be interested in your approach to solve this. > > To be compatible with an external tool like logrotate, all a daemon > needs to do is close and reopen log files at about the same time log > rotation happens. To handle this use case, I suggest the logging modul

Re: [Python-Dev] Logging enhancements

2006-01-09 Thread Barry Warsaw
On Tue, 2006-01-10 at 00:01 +, Vinay Sajip wrote: > I maintain the logging package, and I will happily review patches and apply > them where I think they're fine. I have accepted many patches to the > package, some via SF and some sent privately, but also rejected a few. For > example, the Tim

Re: [Python-Dev] Logging enhancements

2006-01-09 Thread Shane Hathaway
Vinay Sajip wrote: > On 1/9/06, Shane Hathaway <[EMAIL PROTECTED]> wrote: >>- The logging.config.fileConfig function has bare excepts that hide >>configuration errors. I'd like to remove the bare excepts and break up >>fileConfig for clarity. > > I've no problem with this in principle, though the

Re: [Python-Dev] Logging enhancements

2006-01-09 Thread Vinay Sajip
Hi Shane, On 1/9/06, Shane Hathaway <[EMAIL PROTECTED]> wrote: > I'd like to create a patch for the logging package, but before I do, I > need to know whether someone else is working on the package and whether > my patch is likely to be accepted. Is there another group I should talk to? I mainta

Re: [Python-Dev] Logging enhancements

2006-01-09 Thread Shane Hathaway
Tim Peters wrote: > [Shane Hathaway] > >>What is the time frame for Python 2.5? If I finish soon and the changes >>are not disruptive, do I have enough time for my changes to make it into >>2.5? > > > Yup! 2.5 hasn't even had an alpha release yet, and I don't expect > 2.5a1 before March: > >

Re: [Python-Dev] Logging enhancements

2006-01-09 Thread Tim Peters
[Shane Hathaway] > What is the time frame for Python 2.5? If I finish soon and the changes > are not disruptive, do I have enough time for my changes to make it into > 2.5? Yup! 2.5 hasn't even had an alpha release yet, and I don't expect 2.5a1 before March: http://mail.python.org/pipermail

Re: [Python-Dev] Logging enhancements

2006-01-09 Thread Aahz
On Mon, Jan 09, 2006, Shane Hathaway wrote: > > What is the time frame for Python 2.5? If I finish soon and the changes > are not disruptive, do I have enough time for my changes to make it into > 2.5? There is still no official timeframe for 2.5. Alpha is hoped for March/April; final release

Re: [Python-Dev] Logging enhancements

2006-01-09 Thread Shane Hathaway
Neal Norwitz wrote: > On 1/9/06, Shane Hathaway <[EMAIL PROTECTED]> wrote: > >>I'd like to create a patch for the logging package, but before I do, I >>need to know whether someone else is working on the package and whether >>my patch is likely to be accepted. Is there another group I should talk

Re: [Python-Dev] Logging enhancements

2006-01-09 Thread Neal Norwitz
On 1/9/06, Shane Hathaway <[EMAIL PROTECTED]> wrote: > I'd like to create a patch for the logging package, but before I do, I > need to know whether someone else is working on the package and whether > my patch is likely to be accepted. Is there another group I should talk to? Vinay (copied) main

[Python-Dev] Logging enhancements

2006-01-09 Thread Shane Hathaway
I'd like to create a patch for the logging package, but before I do, I need to know whether someone else is working on the package and whether my patch is likely to be accepted. Is there another group I should talk to? Specifically, I want to change the following: - The logging.config.fileConf