[Python-checkins] r45475 - python/trunk/Lib/test/test_cmd_line.py

neal.norwitz python-checkins at python.org
Mon Apr 17 04:41:25 CEST 2006


Author: neal.norwitz
Date: Mon Apr 17 04:41:25 2006
New Revision: 45475

Modified:
   python/trunk/Lib/test/test_cmd_line.py
Log:
Add a comment to explain why we are calling _cleanup()

Modified: python/trunk/Lib/test/test_cmd_line.py
==============================================================================
--- python/trunk/Lib/test/test_cmd_line.py	(original)
+++ python/trunk/Lib/test/test_cmd_line.py	Mon Apr 17 04:41:25 2006
@@ -10,6 +10,8 @@
         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
 


More information about the Python-checkins mailing list