[issue17023] Subprocess does not find executable on Windows if it is PATH with quotes

2020-03-18 Thread Eryk Sun
Eryk Sun added the comment: Why are new versions getting added to an issue that was closed 5 years ago? That said, I'd like to clarify that this was not and is not a bug. It happens that the CMD shell strips quotes out, but that doesn't make it valid. PATH in Windows is delimited by

[issue17023] Subprocess does not find executable on Windows if it is PATH with quotes

2020-03-18 Thread Oskar Persson
Change by Oskar Persson : -- versions: +Python 3.6, Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue17023] Subprocess does not find executable on Windows if it is PATH with quotes

2015-02-08 Thread Tim Golden
Changes by Tim Golden m...@timgolden.me.uk: -- resolution: - wont fix stage: - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17023 ___

[issue17023] Subprocess does not find executable on Windows if it is PATH with quotes

2015-02-04 Thread Eli_B
Changes by Eli_B eli.boyar...@gmail.com: -- nosy: +Eli_B ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17023 ___ ___ Python-bugs-list mailing list

[issue17023] Subprocess does not find executable on Windows if it is PATH with quotes

2015-02-04 Thread Tim Golden
Tim Golden added the comment: Under the covers, subprocess is calling CreateProcess so there's really not very much we can do here, short of writing our own PATH-handling. As a matter of fact, passing shell=True will produce the desired effect. Since the only thing this does is to run the

[issue17023] Subprocess does not find executable on Windows if it is PATH with quotes

2014-07-12 Thread Mark Lawrence
Mark Lawrence added the comment: @Pekka sorry about the delay in getting back to you. I can confirm that this is still in issue in 3.4.1 and 3.5.0a0. -- components: +Library (Lib) nosy: +BreamoreBoy type: - behavior versions: +Python 2.7, Python 3.4, Python 3.5

[issue17023] Subprocess does not find executable on Windows if it is PATH with quotes

2013-01-24 Thread Pekka Klärck
New submission from Pekka Klärck: If you add a directory into PATH on Windows so that the directory is in quotes, subprocess does not find executables in it. They are found by the operating system, though, at least when run on the command prompt. To reproduce: C:\python --version Python