asyncio.create_subprocess_exec()

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

Create a subprocess.

The limit parameter sets the buffer limit passed to the StreamReader. See AbstractEventLoop.subprocess_exec() for other parameters.

Return a Process instance.

This function is a coroutine.

doc_python
2016-10-07 17:26:45
Comments
Leave a Comment

Please login to continue.