We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6690b13 commit f3a3f0cCopy full SHA for f3a3f0c
packages/core/src/robotcode/core/utils/path.py
@@ -62,7 +62,7 @@ def normalized_path_full(path: Union[str, "os.PathLike[str]"]) -> Path:
62
return Path(*parents)
63
64
65
-@functools.cache
+@functools.lru_cache(maxsize=100_000)
66
def same_file(path1: Union[str, "os.PathLike[str]", Path], path2: Union[str, "os.PathLike[str]", Path]) -> bool:
67
try:
68
return os.path.samefile(path1, path2)
0 commit comments