mirror of
https://github.com/python/cpython.git
synced 2025-08-27 04:05:34 +00:00
asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor.
This commit is contained in:
parent
48c66c3dd8
commit
73f10fd2f1
2 changed files with 2 additions and 2 deletions
|
@ -159,7 +159,7 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):
|
|||
with events.get_child_watcher() as watcher:
|
||||
transp = _UnixSubprocessTransport(self, protocol, args, shell,
|
||||
stdin, stdout, stderr, bufsize,
|
||||
extra=None, **kwargs)
|
||||
extra=extra, **kwargs)
|
||||
yield from transp._post_init()
|
||||
watcher.add_child_handler(transp.get_pid(),
|
||||
self._child_watcher_callback, transp)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue