From: Antoine Pitrou Date: Tue, 27 Oct 2009 20:20:41 +0000 (+0000) Subject: Try to fix transient refleaks in test_distutils. X-Git-Tag: v2.7a1~220 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb170100d45f66c64827eb27e815e3417116b35d;p=thirdparty%2FPython%2Fcpython.git Try to fix transient refleaks in test_distutils. --- diff --git a/Lib/test/test_distutils.py b/Lib/test/test_distutils.py index fcd792d945a2..2d871d36bd31 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__":