8000 gh-113666: Adding missing UF_ and SF_ flags to module 'stat' by ronaldoussoren · Pull Request #113667 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-113666: Adding missing UF_ and SF_ flags to module 'stat' #113667 8000

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

Merged
merged 16 commits into from
Jan 15, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Lib/stat.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ def S_ISWHT(mode):
if sys.platform == "darwin":
# Group of bits in st_flags, specific to Apple platforms.

UF_SETTABLE = 0x0000ffff # owner settable flags
UF_SETTABLE = 0x0000ffff # owner settable flags
SF_SUPPORTED = 0x009f0000 # superuser supported flags
SF_SETTABLE = 0x3fff0000 # superuser settable flags
SF_SETTABLE = 0x3ffff000 # superuser settable flags
SF_SYNTHETIC = 0xc0000000 # system read-only synthetic flags

UF_NODUMP = 0x00000001 # do not dump file
Expand Down
0