mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-30 08:04:24 +08:00
fix: add missing paramiko.win_openssh (#8672)
This commit is contained in:
12
stubs/paramiko/paramiko/win_openssh.pyi
Normal file
12
stubs/paramiko/paramiko/win_openssh.pyi
Normal file
@@ -0,0 +1,12 @@
|
||||
import sys
|
||||
|
||||
if sys.platform == "win32":
|
||||
PIPE_NAME: str
|
||||
|
||||
def can_talk_to_agent() -> bool: ...
|
||||
|
||||
class OpenSSHAgentConnection:
|
||||
def __init__(self) -> None: ...
|
||||
def send(self, data: bytes) -> int: ...
|
||||
def recv(self, n: int) -> bytes: ...
|
||||
def close(self) -> None: ...
|
||||
Reference in New Issue
Block a user