robotcode-core 0.97.0__tar.gz → 0.99.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/PKG-INFO +1 -1
- robotcode_core-0.99.0/src/robotcode/core/__version__.py +1 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/path.py +8 -1
- robotcode_core-0.97.0/src/robotcode/core/__version__.py +0 -1
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/.gitignore +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/LICENSE.txt +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/README.md +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/pyproject.toml +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/__init__.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/async_tools.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/concurrent.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/documents_manager.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/event.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/filewatcher.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/ignore_spec.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/language.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/lsp/__init__.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/lsp/types.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/py.typed +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/text_document.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/types.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/uri.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/__init__.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/caching.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/cli.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/dataclasses.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/debugpy.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/glob_path.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/inspect.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/logging.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/net.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/process.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/safe_eval.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/utils/version.py +0 -0
- {robotcode_core-0.97.0 → robotcode_core-0.99.0}/src/robotcode/core/workspace.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.99.0"
|
|
@@ -39,7 +39,7 @@ def normalized_path(path: "Union[str, os.PathLike[str]]") -> Path:
|
|
|
39
39
|
return Path(p)
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
def normalized_path_full(path: Union[str, "os.PathLike[
|
|
42
|
+
def normalized_path_full(path: Union[str, "os.PathLike[str]"]) -> Path:
|
|
43
43
|
p = normalized_path(path)
|
|
44
44
|
|
|
45
45
|
orig_parents = list(reversed(p.parents))
|
|
@@ -59,3 +59,10 @@ def normalized_path_full(path: Union[str, "os.PathLike[Any]"]) -> Path:
|
|
|
59
59
|
return Path(*parents, *[f.name for f in orig_parents[index:]])
|
|
60
60
|
|
|
61
61
|
return Path(*parents)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def same_file(path1: Union[str, "os.PathLike[str]", Path], path2: Union[str, "os.PathLike[str]", Path]) -> bool:
|
|
65
|
+
try:
|
|
66
|
+
return os.path.samefile(path1, path2)
|
|
67
|
+
except OSError:
|
|
68
|
+
return False
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.97.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|