You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The lexists() implementation in genericpath use os.stat(). This is overkill on Windows. We should use a simpler builtin function. This can also benefit pathlib.Path.glob().
Has this already been discussed elsewhere?
This is a minor feature, which does not need previous discussion elsewhere
Feature or enhancement
Proposal:
The
lexists()
implementation ingenericpath
useos.stat()
. This is overkill on Windows. We should use a simpler builtin function. This can also benefitpathlib.Path.glob()
.Has this already been discussed elsewhere?
This is a minor feature, which does not need previous discussion elsewhere
Links to previous discussion of this feature:
follow_symlinks
toos.path.exists()
#117729Linked PRs
ntpath.lexists
#117842pathlib.Path.glob()
on Windows by usinglexists()
#117858The text was updated successfully, but these errors were encountered: