Skip to content
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
Complete the backport of ALLOW_MISSING
  • Loading branch information
encukou committed Jun 3, 2025
commit 720038b48925143a56a07c8e6c88a8b4a113b015
2 changes: 1 addition & 1 deletion Lib/posixpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ def _joinrealpath(path, rest, strict, seen):
newpath = join(path, name)
try:
st = os.lstat(newpath)
except OSError:
except ignored_error:
is_link = False
else:
is_link = stat.S_ISLNK(st.st_mode)
Expand Down