comparing with c:\work-in-progress\python hg\py3k searching for changes changeset: 8237:bcccc9e18110 tag: 9588test tag: qbase tag: qtip tag: tip user: Tim Golden date: Fri Aug 13 21:13:53 2010 +0100 summary: [mq]: 9588test diff -r b7e2789a3ae8 -r bcccc9e18110 Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py Fri Aug 13 18:16:35 2010 +0000 +++ b/Lib/test/test_subprocess.py Fri Aug 13 21:13:53 2010 +0100 @@ -1113,11 +1113,11 @@ def test_shell_string_with_spaces(self): # call() function with string argument with spaces on Windows - self.with_spaces('"%s" "%s"' % (self.fname, "ab cd"), shell=1) + self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname, "ab cd"), shell=1) def test_shell_sequence_with_spaces(self): # call() function with sequence argument with spaces on Windows - self.with_spaces([self.fname, "ab cd"], shell=1) + self.with_spaces([sys.executable, self.fname, "ab cd"], shell=1) def test_noshell_string_with_spaces(self): # call() function with string argument with spaces on Windows