Skip to content

Commit 058aa62

Browse files
authored
pywin32: fill in the type of win32.win32pipe.GetNamedPipeInfo (#14846)
1 parent fe11cc0 commit 058aa62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/pywin32/win32/win32pipe.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def CreateNamedPipe(
3434
def DisconnectNamedPipe(hFile: int, /) -> None: ...
3535
def GetOverlappedResult(hFile: int, overlapped: _win32typing.PyOVERLAPPED, bWait: int | bool, /) -> int: ...
3636
def WaitNamedPipe(pipeName: str, timeout, /) -> None: ...
37-
def GetNamedPipeInfo(hNamedPipe: int, /) -> tuple[Incomplete, Incomplete, Incomplete, Incomplete]: ...
37+
def GetNamedPipeInfo(hNamedPipe: int, /) -> tuple[int, int, int, int]: ...
3838
def PeekNamedPipe(hPipe: int, size: int, /) -> tuple[str, int, Incomplete]: ...
3939
def GetNamedPipeClientProcessId(hPipe: int, /): ...
4040
def GetNamedPipeServerProcessId(hPipe: int, /): ...

0 commit comments

Comments
 (0)