[New-bugs-announce] [issue7939] subprocess: call([arg, arg2], shell=True) vs call(arg+" "+arg2, shell=True)

anatoly techtonik report at bugs.python.org
Tue Feb 16 13:44:49 CET 2010


New submission from anatoly techtonik <techtonik at gmail.com>:

subprocess.call([arg, arg2], shell=True)  is different from subprocess.call(arg+" "+arg2, shell=True)

The last one executed correctly, the first one fails on Python 2.5.2 Debian Lenny. Why these should be different? Seems like a bug to me.

----------
components: Library (Lib)
messages: 99401
nosy: techtonik
severity: normal
status: open
title: subprocess: call([arg, arg2], shell=True) vs call(arg+" "+arg2, shell=True)
versions: Python 2.5

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7939>
_______________________________________


More information about the New-bugs-announce mailing list