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 6fd81d4c6ad929f16a2f85aecdb475037d8d2f3f
2 changes: 1 addition & 1 deletion Lib/posixpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,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