From: Antoine Pitrou Date: Tue, 27 Oct 2009 20:21:45 +0000 (+0000) Subject: Merged revisions 75860 via svnmerge from X-Git-Tag: v3.2a1~2298 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1568732d73718bffc9da49fa674234c2327b2e87;p=thirdparty%2FPython%2Fcpython.git 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. ........ --- diff --git a/Lib/test/test_distutils.py b/Lib/test/test_distutils.py index 94e59bc58acb..d613abe453b5 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__":