From ae8de6a3d622ac00112b262f4ee3d1a346152ed6 Mon Sep 17 00:00:00 2001 From: "antoine.pitrou" Date: Tue, 27 Oct 2009 20:20:41 +0000 Subject: [PATCH] Try to fix transient refleaks in test_distutils. git-svn-id: http://svn.python.org/projects/python/trunk@75860 6015fed2-1504-0410-9fe1-9d1591cc4771 --- 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 fcd792d945..2d871d36bd 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__": -- 2.11.4.GIT