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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1568732d73718bffc9da49fa674234c2327b2e87;p=python 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 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__":