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

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 1 commit
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
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
ronaldoussoren committed Jan 4, 2024
commit b68cf311e0f96097c049f957d1ba080ea4ea026b
2 changes: 1 addition & 1 deletion Lib/stat.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def S_ISWHT(mode):

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

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