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

Skip to content

Commit ce8c768

Browse files
committed
Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport
Methods only raise NotImplementedError and are never used.
1 parent b389b48 commit ce8c768

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

Lib/asyncio/base_subprocess.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,6 @@ def __repr__(self):
7979
def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):
8080
raise NotImplementedError
8181

82-
def _make_write_subprocess_pipe_proto(self, fd):
83-
raise NotImplementedError
84-
85-
def _make_read_subprocess_pipe_proto(self, fd):
86-
raise NotImplementedError
87-
8882
def close(self):
8983
if self._closed:
9084
return

0 commit comments

Comments
 (0)