summaryrefslogtreecommitdiffstats
path: root/Lib/subprocess.py
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-11-09 15:16:23 (GMT)
committerEric Smith <eric@trueblade.com>2009-11-09 15:16:23 (GMT)
commitd19915ed76e31534f4f075c1c37c4972ace8fc42 (patch)
tree3577493cdc4a89bfabff9fec4684a331cd5e4984 /Lib/subprocess.py
parenta5dcf2125fa3a1e2702adfa09c8ab157fadcd9f0 (diff)
downloadcpython-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.py4
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: