summaryrefslogtreecommitdiff
path: root/Lib/asyncio/windows_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-29 14:32:20 -0800
committerVictor Stinner <victor.stinner@gmail.com>2014-01-29 14:32:20 -0800
commit2d6e266f57807f59b5bcd21a97a416ad694c1bb8 (patch)
tree1d2d6410cbc10367281d2bc9ddfdcacf6c67f3ac /Lib/asyncio/windows_events.py
parent11f4022390e89f67fc48b418560d9c22cc0e9304 (diff)
downloadcpython-2d6e266f57807f59b5bcd21a97a416ad694c1bb8.tar.gz
asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor.
Diffstat (limited to 'Lib/asyncio/windows_events.py')
-rw-r--r--Lib/asyncio/windows_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/windows_events.py b/Lib/asyncio/windows_events.py
index 3c21e43bd6..d01de2f703 100644
--- a/Lib/asyncio/windows_events.py
+++ b/Lib/asyncio/windows_events.py
@@ -174,7 +174,7 @@ class ProactorEventLoop(proactor_events.BaseProactorEventLoop):
extra=None, **kwargs):
transp = _WindowsSubprocessTransport(self, protocol, args, shell,
stdin, stdout, stderr, bufsize,
- extra=None, **kwargs)
+ extra=extra, **kwargs)
yield from transp._post_init()
return transp