Add a comment to explain why we are calling _cleanup()

This commit is contained in:
Neal Norwitz 2006-04-17 02:41:25 +00:00
parent 00ac0d22f3
commit 4b16de4350

View file

@ -10,6 +10,8 @@ class CmdLineTest(unittest.TestCase):
infp.close()
data = outfp.read()
outfp.close()
# try to cleanup the child so we don't appear to leak when running
# with regrtest -R. This should be a no-op on Windows.
popen2._cleanup()
return data