[Python-checkins] r75861 - in python/branches/py3k: Lib/test/test_distutils.py

antoine.pitrou python-checkins at python.org
Tue Oct 27 21:21:45 CET 2009


Author: antoine.pitrou
Date: Tue Oct 27 21:21:45 2009
New Revision: 75861

Log:
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.
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Lib/test/test_distutils.py

Modified: python/branches/py3k/Lib/test/test_distutils.py
==============================================================================
--- python/branches/py3k/Lib/test/test_distutils.py	(original)
+++ python/branches/py3k/Lib/test/test_distutils.py	Tue Oct 27 21:21:45 2009
@@ -11,6 +11,7 @@
 
 def test_main():
     test.support.run_unittest(distutils.tests.test_suite())
+    test.support.reap_children()
 
 
 if __name__ == "__main__":


More information about the Python-checkins mailing list