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

2015-05-22 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 rep...@bugs.python.org

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

2015-05-22 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +vinay.sajip ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24262 ___ ___ Python-bugs-list mailing list

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

2015-05-22 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- resolution: fixed - out of date stage: - resolved ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue24262 ___

[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