Create subprocess transport.
(self, protocol, args, shell,
stdin, stdout, stderr, bufsize,
extra=None, **kwargs)
| 532 | raise NotImplementedError |
| 533 | |
| 534 | async def _make_subprocess_transport(self, protocol, args, shell, |
| 535 | stdin, stdout, stderr, bufsize, |
| 536 | extra=None, **kwargs): |
| 537 | """Create subprocess transport.""" |
| 538 | raise NotImplementedError |
| 539 | |
| 540 | def _write_to_self(self): |
| 541 | """Write a byte to self-pipe, to wake up the event loop. |
no outgoing calls