From cb170100d45f66c64827eb27e815e3417116b35d Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 27 Oct 2009 20:20:41 +0000 Subject: Try to fix transient refleaks in test_distutils. --- Lib/test/test_distutils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_distutils.py b/Lib/test/test_distutils.py index fcd792d..2d871d3 100644 --- a/Lib/test/test_distutils.py +++ b/Lib/test/test_distutils.py @@ -11,6 +11,7 @@ import test.test_support def test_main(): test.test_support.run_unittest(distutils.tests.test_suite()) + test.test_support.reap_children() if __name__ == "__main__": -- cgit v0.12