OILS / pyext / fanos.pyi View on Github | oilshell.org

6 lines, 3 significant
1from typing import List, Optional
2
3# returns a blob, or None on EOF
4def recv(fd: int, fd_out: List[int]) -> Optional[str]: ...
5
6def send(fd: int, msg: str, fd0: int = -1, fd1: int = -1, fd2: int = -1) -> None: ...