summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-27 20:21:45 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-27 20:21:45 (GMT)
commit1568732d73718bffc9da49fa674234c2327b2e87 (patch)
treeeddb5b46bfd6143cdc87a4690e2f9805898b57fc
parentaefe6af18f9698bb6158545d7aa55853b154a238 (diff)
downloadcpython-1568732d73718bffc9da49fa674234c2327b2e87.zip
cpython-1568732d73718bffc9da49fa674234c2327b2e87.tar.gz
cpython-1568732d73718bffc9da49fa674234c2327b2e87.tar.bz2
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. ........
-rw-r--r--Lib/test/test_distutils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_distutils.py b/Lib/test/test_distutils.py
index 94e59bc..d613abe 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__":