summaryrefslogtreecommitdiff
path: root/Lib/subprocess.py
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2009-11-09 15:20:16 +0000
committerEric Smith <eric@trueblade.com>2009-11-09 15:20:16 +0000
commitf4b581ed253a94bd4edccfc34e4dc60c94b44359 (patch)
tree8b88f7ee23787378afa3b2012b706a4c6cf6d982 /Lib/subprocess.py
parent754d770ed36b5641b8987ac0a4dcddbe10a2baca (diff)
downloadcpython-git-f4b581ed253a94bd4edccfc34e4dc60c94b44359.tar.gz
Merged revisions 76168 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r76168 | eric.smith | 2009-11-09 10:16:23 -0500 (Mon, 09 Nov 2009) | 1 line 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 477af3875f..4c6b763cb0 100644
--- a/Lib/subprocess.py
+++ b/Lib/subprocess.py
@@ -516,7 +516,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: