MCPcopy
hub / github.com/pytest-dev/pytest / NoCapture

Class NoCapture

src/_pytest/capture.py:337–359  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

335
336
337class NoCapture(CaptureBase[str]):
338 EMPTY_BUFFER = ""
339
340 def __init__(self, fd: int) -> None:
341 pass
342
343 def start(self) -> None:
344 pass
345
346 def done(self) -> None:
347 pass
348
349 def suspend(self) -> None:
350 pass
351
352 def resume(self) -> None:
353 pass
354
355 def snap(self) -> str:
356 return ""
357
358 def writeorg(self, data: str) -> None:
359 pass
360
361
362class SysCaptureBase(CaptureBase[AnyStr]):

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected