MCPcopy Create free account
hub / github.com/pytest-dev/pytest / __init__

Method __init__

src/_pytest/capture.py:179–181  ·  view source on GitHub ↗
(self, other: TextIO)

Source from the content-addressed store, hash-verified

177
178class TeeCaptureIO(CaptureIO):
179 def __init__(self, other: TextIO) -> None:
180 self._other = other
181 super().__init__()
182
183 def write(self, s: str) -> int:
184 super().write(s)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected