diff options
author | Eric Smith <eric@trueblade.com> | 2009-11-09 15:16:23 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2009-11-09 15:16:23 (GMT) |
commit | d19915ed76e31534f4f075c1c37c4972ace8fc42 (patch) | |
tree | 3577493cdc4a89bfabff9fec4684a331cd5e4984 /Lib/subprocess.py | |
parent | a5dcf2125fa3a1e2702adfa09c8ab157fadcd9f0 (diff) | |
download | cpython-d19915ed76e31534f4f075c1c37c4972ace8fc42.zip cpython-d19915ed76e31534f4f075c1c37c4972ace8fc42.tar.gz cpython-d19915ed76e31534f4f075c1c37c4972ace8fc42.tar.bz2 |
Issue 7294: Fixed URL in a comment.
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r-- | Lib/subprocess.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py index 45e49a1..f143460 100644 --- a/Lib/subprocess.py +++ b/Lib/subprocess.py @@ -564,7 +564,9 @@ def list2cmdline(seq): """ # See - # http://msdn.microsoft.com/library/en-us/vccelng/htm/progs_12.asp + # http://msdn.microsoft.com/en-us/library/17w5ykft.aspx + # or search http://msdn.microsoft.com for + # "Parsing C++ Command-Line Arguments" result = [] needquote = False for arg in seq: |