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

Function saved_fd

testing/test_capture.py:1054–1060  ·  view source on GitHub ↗
(fd)

Source from the content-addressed store, hash-verified

1052
1053@contextlib.contextmanager
1054def saved_fd(fd):
1055 new_fd = os.dup(fd)
1056 try:
1057 yield
1058 finally:
1059 os.dup2(new_fd, fd)
1060 os.close(new_fd)
1061
1062
1063class TestStdCapture:

Calls 1

closeMethod · 0.45

Tested by

no test coverage detected