[Python-checkins] python/dist/src/Lib subprocess.py, 1.8.2.3,
1.8.2.4
astrand at users.sourceforge.net
astrand at users.sourceforge.net
Thu Mar 3 22:11:09 CET 2005
Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16164
Modified Files:
Tag: release24-maint
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.8.2.3
retrieving revision 1.8.2.4
diff -u -d -r1.8.2.3 -r1.8.2.4
--- subprocess.py 1 Jan 2005 09:32:16 -0000 1.8.2.3
+++ subprocess.py 3 Mar 2005 21:11:06 -0000 1.8.2.4
@@ -490,6 +490,7 @@
result.extend(bs_buf)
if needquote:
+ result.extend(bs_buf)
result.append('"')
return ''.join(result)
More information about the Python-checkins
mailing list