From 1568732d73718bffc9da49fa674234c2327b2e87 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou Date: Tue, 27 Oct 2009 20:21:45 +0000 Subject: [PATCH] Merged revisions 75860 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75860 | antoine.pitrou | 2009-10-27 21:20:41 +0100 (mar., 27 oct. 2009) | 3 lines 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 94e59bc58a..d613abe453 100644 --- a/Lib/test/test_distutils.py +++ b/Lib/test/test_distutils.py @@ -11,6 +11,7 @@ import test.support def test_main(): test.support.run_unittest(distutils.tests.test_suite()) + test.support.reap_children() if __name__ == "__main__": -- 2.50.1