robotcode-core 0.64.0__tar.gz → 0.65.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_core-0.64.0 → robotcode_core-0.65.1}/PKG-INFO +1 -1
- robotcode_core-0.65.1/src/robotcode/core/__version__.py +1 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/dataclasses.py +2 -2
- robotcode_core-0.64.0/src/robotcode/core/__version__.py +0 -1
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/.gitignore +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/LICENSE.txt +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/README.md +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/pyproject.toml +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/__init__.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/async_cache.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/async_itertools.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/async_tools.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/event.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/logging.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/lsp/__init__.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/lsp/types.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/py.typed +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/types.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/uri.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/__init__.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/cli.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/debugpy.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/glob_path.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/inspect.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/net.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/path.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/process.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/safe_eval.py +0 -0
- {robotcode_core-0.64.0 → robotcode_core-0.65.1}/src/robotcode/core/utils/version.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.65.1"
|
|
@@ -128,7 +128,7 @@ def encode_case_for_field_name(obj: Any, field: dataclasses.Field) -> str: # ty
|
|
|
128
128
|
__decode_case_cache: Dict[Tuple[Type[Any], str], str] = {}
|
|
129
129
|
|
|
130
130
|
|
|
131
|
-
def _decode_case_for_member_name(type: Type[
|
|
131
|
+
def _decode_case_for_member_name(type: Type[Any], name: str) -> str:
|
|
132
132
|
r = __decode_case_cache.get((type, name), __NOT_SET)
|
|
133
133
|
if r is __NOT_SET:
|
|
134
134
|
if dataclasses.is_dataclass(type):
|
|
@@ -141,7 +141,7 @@ def _decode_case_for_member_name(type: Type[_T], name: str) -> str:
|
|
|
141
141
|
|
|
142
142
|
if r is __NOT_SET:
|
|
143
143
|
if hasattr(type, "_decode_case"):
|
|
144
|
-
r = str(type._decode_case(name))
|
|
144
|
+
r = str(type._decode_case(name))
|
|
145
145
|
else:
|
|
146
146
|
r = name
|
|
147
147
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.64.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
|