[issue9946] lock use in logging

2010-09-27 Thread Éric Araujo
Changes by Éric Araujo : -- superseder: -> Improper locking in logging ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue9946] lock use in logging

2010-09-25 Thread Georg Brandl
Georg Brandl added the comment: Dupe of #9945, sorry. -- resolution: -> duplicate status: open -> closed ___ Python tracker ___ ___ P

[issue9946] lock use in logging

2010-09-25 Thread Georg Brandl
New submission from Georg Brandl : >From logging.Logger: def removeHandler(self, hdlr): """ Remove the specified handler from this logger. """ if hdlr in self.handlers: hdlr.acquire() try: self.handlers.remove(hdlr)