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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb170100d45f66c64827eb27e815e3417116b35d;p=python Try to fix transient refleaks in test_distutils. --- 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__":