[issue24262] logging.FileHandler.close() is not thread-safe

2015-05-22 Thread R. David Murray
Changes by R. David Murray : -- resolution: fixed -> out of date stage: -> resolved ___ Python tracker ___ ___ Python-bugs-list maili

[issue24262] logging.FileHandler.close() is not thread-safe

2015-05-21 Thread Gleb Dubovik
Gleb Dubovik added the comment: We used a very old version of python shipped with 12.04 LTS. The bug was fixed in 2.7.3 in 2ab3a97d544c by Vinay. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue24262] logging.FileHandler.close() is not thread-safe

2015-05-21 Thread Ned Deily
Changes by Ned Deily : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue24262] logging.FileHandler.close() is not thread-safe

2015-05-21 Thread Gleb Dubovik
New submission from Gleb Dubovik: We're using FileHandler in combination with pytest plugin. Every time new test starts, new FileHandler is created and attached to the root logger, at the end of the test FileHandler is removed. This allows us to create per-test log files. There are some thread