Message290077
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. |
|
Date |
User |
Action |
Args |
2017-03-24 05:20:17 | Torrin Jones | set | recipients:
+ Torrin Jones, yselivanov |
2017-03-24 05:20:17 | Torrin Jones | set | messageid: <1490332817.83.0.92510042207.issue29893@psf.upfronthosting.co.za> |
2017-03-24 05:20:17 | Torrin Jones | link | issue29893 messages |
2017-03-24 05:20:17 | Torrin Jones | create | |
|