[issue4749] Issue with RotatingFileHandler logging handler on Windows

2009-06-11 Thread Lowell Alleman
Lowell Alleman lowel...@gmail.com added the comment: For anyone who is interested, I did some testing with the ConcurrentRotatingFileHandler from my ConcurrentLogHandler package (v 0.8.3). I've found that it does not fail when dropped into the revised-logthred.py script. However, it does spend

[issue4749] Issue with RotatingFileHandler logging handler on Windows

2009-06-10 Thread Lowell Alleman
Lowell Alleman lowel...@gmail.com added the comment: I must say that Vinay's findings are most interesting. Thanks Vinay for tracking this down! Just a thought, but has anybody tried this using the subprocess module? I've glanced through subprocess.py and it certainly does not use os.system

[issue4749] Issue with RotatingFileHandler logging handler on Windows

2009-06-08 Thread Lowell Alleman
Lowell Alleman lowel...@gmail.com added the comment: Robert, please provide the Python version and distribution that your are using. This should do the trick: import sys print sys.version -- Added file: http://bugs.python.org/file14227/unnamed

[issue4749] Issue with RotatingFileHandler logging handler on Windows

2009-06-08 Thread Lowell Alleman
Lowell Alleman lowel...@gmail.com added the comment: I tested this against a number of different python installs that I have laying around. Here are the results that I found: Releases that reproduce this bug: Python 2.3.5 (#62, Feb 8 2005, 16:23:02) [MSC v.1200 32 bit (Intel)] on win32

[issue4749] Issue with RotatingFileHandler logging handler on Windows

2008-12-30 Thread Lowell Alleman
Lowell Alleman lowel...@gmail.com added the comment: I've ran into the same problem before. I've found that due to differences between the way Unix and Windows handles files (inodes vs file handles), this problem is more apparent on Windows, but it isn't handled 100% correctly on Unix systems