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