[issue9947] Weird locking in logging config system

2010-09-27 Thread Vinay Sajip
Vinay Sajip added the comment: Fix checked into release31-maint (r85046). -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9947] Weird locking in logging config system

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

[issue9947] Weird locking in logging config system

2010-09-25 Thread Armin Ronacher
New submission from Armin Ronacher : Another case of improper locking in logging. The stopListening() method of the logging config acquires the logging lock, but it doesn't do it early enough. In order for this function to be thread safe it would have to lock before the if. Currently that l