This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tzellman
Recipients
Date 2007-05-07.17:20:46
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This could likely be rejected.

I realize a solution to this w/o modifying the Python source is to encase the expression yourself in double quotes. So, the example given would look like:
>>> import subprocess
>>> proc = subprocess.Popen('""c:\Windows\system\ping.exe" "localhost""',
shell=1, stdout=subprocess.PIPE, stderr=subprocess.PIPE)

And that will work.

Sorry for any confusion.
History
Date User Action Args
2007-08-23 14:53:37adminlinkissue1714451 messages
2007-08-23 14:53:37admincreate