diff options
Diffstat (limited to 'Lib/test/test_cmd_line.py')
| -rw-r--r-- | Lib/test/test_cmd_line.py | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py index a4a656d451..018bec6368 100644 --- a/Lib/test/test_cmd_line.py +++ b/Lib/test/test_cmd_line.py @@ -10,6 +10,9 @@ 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      def exit_code(self, cmd_line):  | 
