projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b389b48
)
Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport
author
Victor Stinner
<victor.stinner@gmail.com>
Fri, 27 Feb 2015 16:49:09 +0000
(17:49 +0100)
committer
Victor Stinner
<victor.stinner@gmail.com>
Fri, 27 Feb 2015 16:49:09 +0000
(17:49 +0100)
Methods only raise NotImplementedError and are never used.
Lib/asyncio/base_subprocess.py
patch
|
blob
|
history
diff --git
a/Lib/asyncio/base_subprocess.py
b/Lib/asyncio/base_subprocess.py
index f56873fbeadef61e8b763f4ab4319323434ccb49..c1cdfda75449448563527e396e82a9b9a62e80fc 100644
(file)
--- a/
Lib/asyncio/base_subprocess.py
+++ b/
Lib/asyncio/base_subprocess.py
@@
-79,12
+79,6
@@
class BaseSubprocessTransport(transports.SubprocessTransport):
def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs):
raise NotImplementedError
- def _make_write_subprocess_pipe_proto(self, fd):
- raise NotImplementedError
-
- def _make_read_subprocess_pipe_proto(self, fd):
- raise NotImplementedError
-
def close(self):
if self._closed:
return