[issue995907] memory leak with threads and enhancement of the timer class

2013-05-05 Thread Yael
Yael added the comment: Can you please review the patch? thanks! -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue995907 ___ ___ Python-bugs-list

[issue995907] memory leak with threads and enhancement of the timer class

2013-04-14 Thread Yael
Yael added the comment: Added a class Threading.TimerPool. This new class spawns one thread, and that thread is running as long as there are active timers. -- keywords: +patch Added file: http://bugs.python.org/file29853/mywork.patch ___ Python

[issue995907] memory leak with threads and enhancement of the timer class

2013-04-13 Thread Yael
Yael added the comment: I am working on a patch for a new class that uses a single background thread, it should be ready soon. One unintended consequence of this change is that with one thread, multiple timers that have the same timeout will no longer run in parallel, but one after the other