remove unneccessary indirections and options

This commit is contained in:
holger krekel 2014-03-14 12:49:34 +01:00
parent cfd43a9b02
commit cde970be69
1 changed files with 1 additions and 7 deletions

View File

@ -120,9 +120,6 @@ class CaptureManager:
f.close()
return newf
def _makestringio(self):
return TextIO()
def _getcapture(self, method):
if method == "fd":
return StdCaptureFD(
@ -130,10 +127,7 @@ class CaptureManager:
err=self._maketempfile(),
)
elif method == "sys":
return StdCapture(
out=self._makestringio(),
err=self._makestringio(),
)
return StdCapture(out=TextIO(), err=TextIO())
elif method == "no":
return NoCapture()
else: