[Python-checkins] python/dist/src/Lib subprocess.py,1.18,1.19

astrand at users.sourceforge.net astrand at users.sourceforge.net
Thu Mar 3 22:10:26 CET 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15926

Modified Files:
	subprocess.py 
Log Message:
Corrected bug in list2cmdline wrt backslashes. Fixes #1083306.


Index: subprocess.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/subprocess.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- subprocess.py	3 Mar 2005 20:28:59 -0000	1.18
+++ subprocess.py	3 Mar 2005 21:10:23 -0000	1.19
@@ -532,6 +532,7 @@
             result.extend(bs_buf)
 
         if needquote:
+            result.extend(bs_buf)
             result.append('"')
 
     return ''.join(result)



More information about the Python-checkins mailing list