We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6afa60e commit 92dd860Copy full SHA for 92dd860
src/mcp/client/stdio/win32.py
@@ -62,6 +62,7 @@ def __init__(self, popen_obj: subprocess.Popen[bytes]):
62
self.stdin_raw = popen_obj.stdin # type: ignore[assignment]
63
self.stdout_raw = popen_obj.stdout # type: ignore[assignment]
64
self.stderr = popen_obj.stderr # type: ignore[assignment]
65
+ self.pid = popen_obj.pid
66
67
self.stdin = FileWriteStream(cast(BinaryIO, self.stdin_raw)) if self.stdin_raw else None
68
self.stdout = FileReadStream(cast(BinaryIO, self.stdout_raw)) if self.stdout_raw else None
0 commit comments