[New-bugs-announce] [issue29893] create_subprocess_exec doc doesn't match software

Torrin Jones report at bugs.python.org
Fri Mar 24 01:20:17 EDT 2017


New submission from Torrin Jones:

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.

----------
components: asyncio
messages: 290077
nosy: Torrin Jones, yselivanov
priority: normal
severity: normal
status: open
title: create_subprocess_exec doc doesn't match software
versions: Python 3.6

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


More information about the New-bugs-announce mailing list