INNER CODE UNIT · Python
path
uxlfoundation/oneDAL · dev/release_tests/compare_release_trees.py:319
path = current_path / dirname
rel_path = rel(path, root)
if path.is_symlink():
links[rel_path] = os.readlink(path)
else:
dirs.add(rel_path)
for filename in filenames:
path = current_path / filename
rel_path = rel(path, root)
if path.is_symlink():
links[rel_path] = os.readlink(path)
else:
files.add(rel_path)
return dirs, files, links
def absorb_dereferenced_links(make_root, make_files, bazel_root, bazel_links, limit):