[issue19523] logging.FileHandler - using of delay argument case handle leaks

2013-11-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset bbb227b96c45 by Vinay Sajip in branch '2.7': Issue #19523: Closed FileHandler leak which occurred when delay was set. http://hg.python.org/cpython/rev/bbb227b96c45 New changeset 058810fe1b98 by Vinay Sajip in branch '3.3': Issue #19523: Closed FileH

[issue19523] logging.FileHandler - using of delay argument case handle leaks

2013-11-08 Thread Vinay Sajip
Changes by Vinay Sajip : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue19523] logging.FileHandler - using of delay argument case handle leaks

2013-11-07 Thread DDGG
DDGG added the comment: If you run this script, and then view the Task Manager for this process's handles, it is growing forever. handlers -> handles. this leak handle is Handler.lock object, because the instance was not be garbage-collected. -- __

[issue19523] logging.FileHandler - using of delay argument case handle leaks

2013-11-07 Thread DDGG
Changes by DDGG : -- title: logging.FileHandler - using of delay argument case handler leaks -> logging.FileHandler - using of delay argument case handle leaks ___ Python tracker __