(self)
| 148 | stderr: BytesIOCopy |
| 149 | |
| 150 | def __init__(self) -> None: |
| 151 | self.output = io.BytesIO() |
| 152 | self.stdout = BytesIOCopy(copy_to=self.output) |
| 153 | self.stderr = BytesIOCopy(copy_to=self.output) |
| 154 | |
| 155 | |
| 156 | class _NamedTextIOWrapper(io.TextIOWrapper): |
nothing calls this directly
no test coverage detected