robotcode-robot 2.2.0__tar.gz → 2.3.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_robot-2.2.0 → robotcode_robot-2.3.0}/PKG-INFO +1 -1
- robotcode_robot-2.3.0/src/robotcode/robot/__version__.py +1 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/imports_manager.py +8 -4
- robotcode_robot-2.2.0/src/robotcode/robot/__version__.py +0 -1
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/.gitignore +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/README.md +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/pyproject.toml +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/__init__.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/config/__init__.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/config/loader.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/config/model.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/config/utils.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/__init__.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/data_cache.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/diagnostics_modifier.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/document_cache_helper.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/entities.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/errors.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/keyword_finder.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/library_doc.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/model_helper.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/namespace.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/namespace_analyzer.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/workspace_config.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/py.typed +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/__init__.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/ast.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/markdownformatter.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/match.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/robot_path.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/stubs.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/variables.py +0 -0
- {robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/visitor.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.3.0"
|
{robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/imports_manager.py
RENAMED
|
@@ -1005,8 +1005,10 @@ class ImportsManager:
|
|
|
1005
1005
|
for p in self.ignored_libraries_patters
|
|
1006
1006
|
):
|
|
1007
1007
|
self._logger.debug(
|
|
1008
|
-
lambda:
|
|
1009
|
-
|
|
1008
|
+
lambda: (
|
|
1009
|
+
f"Ignore library {result.name or '' if result is not None else ''}"
|
|
1010
|
+
f" {result.origin or '' if result is not None else ''} for caching."
|
|
1011
|
+
),
|
|
1010
1012
|
context_name="import",
|
|
1011
1013
|
)
|
|
1012
1014
|
return None, import_name, ignore_arguments
|
|
@@ -1075,8 +1077,10 @@ class ImportsManager:
|
|
|
1075
1077
|
for p in self.ignored_variables_patters
|
|
1076
1078
|
):
|
|
1077
1079
|
self._logger.debug(
|
|
1078
|
-
lambda:
|
|
1079
|
-
|
|
1080
|
+
lambda: (
|
|
1081
|
+
f"Ignore Variables {result.name or '' if result is not None else ''}"
|
|
1082
|
+
f" {result.origin or '' if result is not None else ''} for caching."
|
|
1083
|
+
)
|
|
1080
1084
|
)
|
|
1081
1085
|
return None, import_name
|
|
1082
1086
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.2.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
|
{robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/data_cache.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/keyword_finder.py
RENAMED
|
File without changes
|
{robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/library_doc.py
RENAMED
|
File without changes
|
{robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/model_helper.py
RENAMED
|
File without changes
|
{robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/namespace.py
RENAMED
|
File without changes
|
|
File without changes
|
{robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/diagnostics/workspace_config.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_robot-2.2.0 → robotcode_robot-2.3.0}/src/robotcode/robot/utils/markdownformatter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|