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 Torrin Jones
Recipients Torrin Jones, yselivanov
Date 2017-03-24.05:20:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490332817.83.0.92510042207.issue29893@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation for asyncio.create_subprocess_exec says this is the definition . . .

asyncio.create_subprocess_exec(*args, stdin=None, stdout=None, stderr=None, loop=None, limit=None, **kwds)

The actual definition is this . . .

def create_subprocess_exec(program, *args, stdin=None, stdout=None,            
                           stderr=None, loop=None,                             
                           limit=streams._DEFAULT_LIMIT, **kwds)

Notice the first argument (program) at the start of the actual definition.
History
Date User Action Args
2017-03-24 05:20:17Torrin Jonessetrecipients: + Torrin Jones, yselivanov
2017-03-24 05:20:17Torrin Jonessetmessageid: <1490332817.83.0.92510042207.issue29893@psf.upfronthosting.co.za>
2017-03-24 05:20:17Torrin Joneslinkissue29893 messages
2017-03-24 05:20:17Torrin Jonescreate