This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Roffild
Recipients Roffild, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-11-03.20:55:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541278553.41.0.788709270274.issue35154@psf.upfronthosting.co.za>
In-reply-to
Content
This issue has already been discussed in #23862

Have to use this hack:

import subprocess

def list2cmdlineHack(seq):
    return " ".join(seq)

subprocess.list2cmdline = list2cmdlineHack

There must be an argument in subprocess.run() to disable subprocess.list2cmdline(). Let the programmer set the start line of the command himself.
History
Date User Action Args
2018-11-03 20:55:53Roffildsetrecipients: + Roffild, paul.moore, tim.golden, zach.ware, steve.dower
2018-11-03 20:55:53Roffildsetmessageid: <1541278553.41.0.788709270274.issue35154@psf.upfronthosting.co.za>
2018-11-03 20:55:53Roffildlinkissue35154 messages
2018-11-03 20:55:53Roffildcreate