[issue9945] Improper locking in logging

2010-09-27 Thread Vinay Sajip
Vinay Sajip added the comment: Good call, Éric - fix backported into release31-maint (r85045). -- ___ Python tracker ___ ___ Python-bu

[issue9945] Improper locking in logging

2010-09-27 Thread Éric Araujo
Éric Araujo added the comment: Just to be sure: this does not apply to 3.1? -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bu

[issue9945] Improper locking in logging

2010-09-25 Thread Vinay Sajip
Vinay Sajip added the comment: Fix checked into py3k and release27-maint branches, r85012. Thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue9945] Improper locking in logging

2010-09-25 Thread Armin Ronacher
New submission from Armin Ronacher : I found a a useless lock acquiring in the 27 maintenance branch in logging and a missing one as well: Logger.removeHandler() locks around a handler lock, however the code executed in this lock is not depending on anything of that lock. However there is a