robotcode-core 0.95.1__tar.gz → 0.95.2__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.95.1 → robotcode_core-0.95.2}/PKG-INFO +1 -1
- robotcode_core-0.95.2/src/robotcode/core/__version__.py +1 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/text_document.py +1 -1
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/glob_path.py +1 -1
- robotcode_core-0.95.1/src/robotcode/core/__version__.py +0 -1
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/.gitignore +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/LICENSE.txt +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/README.md +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/pyproject.toml +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/__init__.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/async_tools.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/concurrent.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/documents_manager.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/event.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/filewatcher.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/ignore_spec.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/language.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/lsp/__init__.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/lsp/types.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/py.typed +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/types.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/uri.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/__init__.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/caching.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/cli.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/dataclasses.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/debugpy.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/inspect.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/logging.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/net.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/path.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/process.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/safe_eval.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/utils/version.py +0 -0
- {robotcode_core-0.95.1 → robotcode_core-0.95.2}/src/robotcode/core/workspace.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.95.2"
|
|
@@ -48,7 +48,7 @@ def position_from_utf16(lines: List[str], position: Position) -> Position:
|
|
|
48
48
|
return Position(line=position.line, character=utf32_offset)
|
|
49
49
|
|
|
50
50
|
|
|
51
|
-
@functools.lru_cache(maxsize=
|
|
51
|
+
@functools.lru_cache(maxsize=8192)
|
|
52
52
|
def has_multibyte_char(line: str) -> bool:
|
|
53
53
|
return any(is_multibyte_char(c) for c in line)
|
|
54
54
|
|
|
@@ -60,7 +60,7 @@ def _glob_pattern_to_re(pattern: str) -> str:
|
|
|
60
60
|
return result
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
@functools.lru_cache(maxsize=
|
|
63
|
+
@functools.lru_cache(maxsize=8192)
|
|
64
64
|
def _compile_glob_pattern(pattern: str) -> "re.Pattern[str]":
|
|
65
65
|
return re.compile(_glob_pattern_to_re(pattern))
|
|
66
66
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.95.1"
|
|
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
|