We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
os.DirEntry.is_symlink
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
While fixing a merge conflict in #108718 I've noticed that I've missed the same problem in os.DirEntry.is_symlink.
I will send a new PR since the original one was already merged
Refs #108717
The text was updated successfully, but these errors were encountered:
pythongh-108985: Make os.DirEntry.is_symlink ~twice as fast
ab407e1
False alarm:
#elif defined(HAVE_DIRENT_D_TYPE) /* POSIX */ if (self->d_type != DT_UNKNOWN) return self->d_type == DT_LNK; else return DirEntry_test_mode(defining_class, self, 0, S_IFLNK); #else /* POSIX without d_type */ return DirEntry_test_mode(defining_class, self, 0, S_IFLNK); #endif
Sorry, something went wrong.
sobolevn
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
While fixing a merge conflict in #108718 I've noticed that I've missed the same problem in
os.DirEntry.is_symlink
.I will send a new PR since the original one was already merged
Refs #108717
Linked PRs
os.DirEntry.is_symlink
~twice as fast #108986The text was updated successfully, but these errors were encountered: