diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-27 20:20:41 (GMT) |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-27 20:20:41 (GMT) |
| commit | cb170100d45f66c64827eb27e815e3417116b35d (patch) | |
| tree | 8ba1968912407a60d6a055054651a60f77b4dc41 /Lib/test | |
| parent | fce3207b53aa323044d2e8db3b0a2a4d4b7a7089 (diff) | |
| download | cpython-cb170100d45f66c64827eb27e815e3417116b35d.zip cpython-cb170100d45f66c64827eb27e815e3417116b35d.tar.gz cpython-cb170100d45f66c64827eb27e815e3417116b35d.tar.bz2 | |
Try to fix transient refleaks in test_distutils.
Diffstat (limited to 'Lib/test')
| -rw-r--r-- | Lib/test/test_distutils.py | 1 |
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__": |
