Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove fd from _maybe_close_transport call
  • Loading branch information
SethMichaelLarson authored Mar 2, 2017
commit 0372b36c719d27b43cc0092ffd9fda10d50a36f4
2 changes: 1 addition & 1 deletion Lib/asyncio/subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def pipe_connection_lost(self, fd, exc):

if fd in self._pipe_fds:
self._pipe_fds.remove(fd)
self._maybe_close_transport(fd)
self._maybe_close_transport()

def process_exited(self):
self._process_exited = True
Expand Down