[Python-checkins] r76168 - python/trunk/Lib/subprocess.py

eric.smith python-checkins at python.org
Mon Nov 9 16:16:23 CET 2009


Author: eric.smith
Date: Mon Nov  9 16:16:23 2009
New Revision: 76168

Log:
Issue 7294: Fixed URL in a comment.

Modified:
   python/trunk/Lib/subprocess.py

Modified: python/trunk/Lib/subprocess.py
==============================================================================
--- python/trunk/Lib/subprocess.py	(original)
+++ python/trunk/Lib/subprocess.py	Mon Nov  9 16:16:23 2009
@@ -564,7 +564,9 @@
     """
 
     # 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:


More information about the Python-checkins mailing list