[issue12573] add resource checks for dangling threads and processes

2011-07-15 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue12573] add resource checks for dangling threads and processes

2011-07-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2bedea96de60 by Antoine Pitrou in branch '3.2': Issue #12573: Add resource checks for dangling Thread and Process objects. http://hg.python.org/cpython/rev/2bedea96de60 New changeset 86dc49fbf4af by Antoine Pitrou in branch 'default': Issue #12573:

[issue12573] add resource checks for dangling threads and processes

2011-07-15 Thread Antoine Pitrou
New submission from Antoine Pitrou : This patch adds resource checks for dangling Thread and Process objects to the test suite runner. This should make it easier to spot the cause of some potential sporadic reference leaks. -- components: Tests files: dangling.patch keywords: patch mes