robotcode-robot 0.109.6__tar.gz → 1.0.1__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-0.109.6 → robotcode_robot-1.0.1}/PKG-INFO +2 -2
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/pyproject.toml +1 -1
- robotcode_robot-1.0.1/src/robotcode/robot/__version__.py +1 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/utils/ast.py +12 -0
- robotcode_robot-0.109.6/src/robotcode/robot/__version__.py +0 -1
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/.gitignore +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/LICENSE.txt +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/README.md +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/__init__.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/config/__init__.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/config/loader.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/config/model.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/config/utils.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/__init__.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/data_cache.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/diagnostics_modifier.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/document_cache_helper.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/entities.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/errors.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/imports_manager.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/keyword_finder.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/library_doc.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/model_helper.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/namespace.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/namespace_analyzer.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/workspace_config.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/py.typed +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/utils/__init__.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/utils/markdownformatter.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/utils/match.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/utils/robot_path.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/utils/stubs.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/utils/variables.py +0 -0
- {robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/utils/visitor.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: robotcode-robot
|
3
|
-
Version: 0.
|
3
|
+
Version: 1.0.1
|
4
4
|
Summary: Support classes for RobotCode for handling Robot Framework projects.
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
@@ -26,7 +26,7 @@ Classifier: Topic :: Utilities
|
|
26
26
|
Classifier: Typing :: Typed
|
27
27
|
Requires-Python: >=3.8
|
28
28
|
Requires-Dist: platformdirs<4.4.0,>=3.2.0
|
29
|
-
Requires-Dist: robotcode-core==0.
|
29
|
+
Requires-Dist: robotcode-core==1.0.1
|
30
30
|
Requires-Dist: robotframework>=4.1.0
|
31
31
|
Requires-Dist: tomli>=1.1.0; python_version < '3.11'
|
32
32
|
Description-Content-Type: text/markdown
|
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "1.0.1"
|
@@ -122,6 +122,18 @@ def range_from_node(
|
|
122
122
|
skip_non_data: bool = False,
|
123
123
|
only_start: bool = False,
|
124
124
|
allow_comments: bool = False,
|
125
|
+
) -> Range:
|
126
|
+
r = _range_from_node(node, skip_non_data, only_start, allow_comments)
|
127
|
+
if r.end.line < 0 or r.end.character < 0:
|
128
|
+
return Range(r.start, r.start)
|
129
|
+
return r
|
130
|
+
|
131
|
+
|
132
|
+
def _range_from_node(
|
133
|
+
node: ast.AST,
|
134
|
+
skip_non_data: bool = False,
|
135
|
+
only_start: bool = False,
|
136
|
+
allow_comments: bool = False,
|
125
137
|
) -> Range:
|
126
138
|
if skip_non_data:
|
127
139
|
if cached_isinstance(node, Statement) and node.tokens:
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.109.6"
|
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-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/__init__.py
RENAMED
File without changes
|
{robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/data_cache.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/entities.py
RENAMED
File without changes
|
File without changes
|
{robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/imports_manager.py
RENAMED
File without changes
|
{robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/keyword_finder.py
RENAMED
File without changes
|
{robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/library_doc.py
RENAMED
File without changes
|
{robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/model_helper.py
RENAMED
File without changes
|
{robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/src/robotcode/robot/diagnostics/namespace.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{robotcode_robot-0.109.6 → robotcode_robot-1.0.1}/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
|