Files
typeshed/builtins/3/fcntl.pyi
2015-09-30 09:59:44 -07:00

12 lines
159 B
Python

# Stubs for fcntl
# NOTE: These are incomplete!
import typing
FD_CLOEXEC = 0
F_GETFD = 0
F_SETFD = 0
def fcntl(fd: int, op: int, arg: int = 0) -> int: ...