summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-27 20:20:41 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-27 20:20:41 (GMT)
commitcb170100d45f66c64827eb27e815e3417116b35d (patch)
tree8ba1968912407a60d6a055054651a60f77b4dc41
parentfce3207b53aa323044d2e8db3b0a2a4d4b7a7089 (diff)
downloadcpython-cb170100d45f66c64827eb27e815e3417116b35d.zip
cpython-cb170100d45f66c64827eb27e815e3417116b35d.tar.gz
cpython-cb170100d45f66c64827eb27e815e3417116b35d.tar.bz2
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 fcd792d..2d871d3 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__":