]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-127146: Emscripten: Fix pathlib glob_dotdot test (#135624)
authorHood Chatham <roberthoodchatham@gmail.com>
Wed, 18 Jun 2025 03:20:43 +0000 (20:20 -0700)
committerGitHub <noreply@github.com>
Wed, 18 Jun 2025 03:20:43 +0000 (11:20 +0800)
commite4ccd46bf75fff2938d7c21c7284e49b0ab795b0
tree8218a32d70d87511ad567d678b6bedfbeb391241
parentce58afb400672aeec79f2017ab99acbbc65cb4ab
gh-127146: Emscripten: Fix pathlib glob_dotdot test (#135624)

The Emscripten path resolver uses the same mechanism for resolving `..`
at a file system root as for resolving symlinks. This is because
roots don't store their mountpoints. If the parent of a node is itself,
it is a root but it might be a mountpoint in some other file system.

If a path has enough `..`'s at the root, it will return ELOOP.
Enough turns out to be 49.
Lib/test/test_pathlib/test_pathlib.py