(cmd, stdin=None, stdout=None, stderr=None,
limit=streams._DEFAULT_LIMIT, **kwds)
| 204 | |
| 205 | |
| 206 | async def create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None, |
| 207 | limit=streams._DEFAULT_LIMIT, **kwds): |
| 208 | loop = events.get_running_loop() |
| 209 | protocol_factory = lambda: SubprocessStreamProtocol(limit=limit, |
| 210 | loop=loop) |
| 211 | transport, protocol = await loop.subprocess_shell( |
| 212 | protocol_factory, |
| 213 | cmd, stdin=stdin, stdout=stdout, |
| 214 | stderr=stderr, **kwds) |
| 215 | return Process(transport, protocol, loop) |
| 216 | |
| 217 | |
| 218 | async def create_subprocess_exec(program, *args, stdin=None, stdout=None, |
nothing calls this directly
no test coverage detected
searching dependent graphs…