[issue11444] logging FileHandler.close should acquire its lock before closing stream

2011-03-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset d6626c9fc28d by Vinay Sajip in branch '2.6': Reverted bug fixes for #11444 (fc4d045e3170) and #11424 (b9d76846bb1c), which should not have been made in this branch. http://hg.python.org/cpython/rev/d6626c9fc28d --

[issue11444] logging FileHandler.close should acquire its lock before closing stream

2011-03-08 Thread Vinay Sajip
Changes by Vinay Sajip : -- assignee: -> vinay.sajip resolution: -> fixed status: open -> closed versions: +Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___ __

[issue11444] logging FileHandler.close should acquire its lock before closing stream

2011-03-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset fc4d045e3170 by Vinay Sajip in branch '2.6': Issue #11444: Lock handlers while flushing/closing during shutdown. http://hg.python.org/cpython/rev/fc4d045e3170 New changeset c8b651b3a493 by Vinay Sajip in branch '2.7': Issue #11444: Merge fix from 2

[issue11444] logging FileHandler.close should acquire its lock before closing stream

2011-03-08 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue11444] logging FileHandler.close should acquire its lock before closing stream

2011-03-08 Thread Adam Ernst
New submission from Adam Ernst : This is my first report, apologies if I missed any tracker etiquette. The logging module registers shutdown() to run via atexit. shutdown() calls flush() and close() on each handler. However if a FileHandler is writing to a file while shutdown() is executing, a