Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not all constants in fcntl are available on macos #6807

Merged
merged 10 commits into from
Jan 7, 2022
3 changes: 3 additions & 0 deletions stdlib/fcntl.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ if sys.platform != "win32":
F_OFD_GETLK: int
F_OFD_SETLK: int
F_OFD_SETLKW: int
if sys.version_inf >= (3, 10):
sobolevn marked this conversation as resolved.
Show resolved Hide resolved
F_GETPIPE_SZ: int
F_SETPIPE_SZ: int

DN_ACCESS: int
DN_ATTRIB: int
Expand Down