robotcode-debugger 1.6.0__tar.gz → 1.7.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_debugger-1.6.0 → robotcode_debugger-1.7.0}/PKG-INFO +3 -3
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/pyproject.toml +2 -2
- robotcode_debugger-1.7.0/src/robotcode/debugger/__version__.py +1 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/protocol.py +3 -3
- robotcode_debugger-1.6.0/src/robotcode/debugger/__version__.py +0 -1
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/.gitignore +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/LICENSE.txt +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/README.md +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/__init__.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/cli.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/dap_types.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/debugger.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/default_capabilities.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/hooks.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/id_manager.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/__init__.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/cli.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/client.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/run.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/server.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/listeners.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/mixins.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/py.typed +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/run.py +0 -0
- {robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: robotcode-debugger
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.7.0
|
|
4
4
|
Summary: RobotCode Debugger for Robot Framework
|
|
5
5
|
Project-URL: Homepage, https://robotcode.io
|
|
6
6
|
Project-URL: Donate, https://opencollective.com/robotcode
|
|
@@ -25,8 +25,8 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
|
25
25
|
Classifier: Topic :: Utilities
|
|
26
26
|
Classifier: Typing :: Typed
|
|
27
27
|
Requires-Python: >=3.8
|
|
28
|
-
Requires-Dist: robotcode-jsonrpc2==1.
|
|
29
|
-
Requires-Dist: robotcode-runner==1.
|
|
28
|
+
Requires-Dist: robotcode-jsonrpc2==1.7.0
|
|
29
|
+
Requires-Dist: robotcode-runner==1.7.0
|
|
30
30
|
Requires-Dist: robotframework>=4.1.0
|
|
31
31
|
Provides-Extra: debugpy
|
|
32
32
|
Requires-Dist: debugpy; extra == 'debugpy'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.7.0"
|
|
@@ -26,7 +26,7 @@ from robotcode.core.utils.logging import LoggingDescriptor
|
|
|
26
26
|
from robotcode.jsonrpc2.protocol import (
|
|
27
27
|
JsonRPCException,
|
|
28
28
|
JsonRPCProtocolBase,
|
|
29
|
-
|
|
29
|
+
SentRequestEntry,
|
|
30
30
|
)
|
|
31
31
|
|
|
32
32
|
from .dap_types import (
|
|
@@ -78,7 +78,7 @@ class DebugAdapterProtocol(JsonRPCProtocolBase):
|
|
|
78
78
|
def __init__(self) -> None:
|
|
79
79
|
super().__init__()
|
|
80
80
|
self._sended_request_lock = threading.RLock()
|
|
81
|
-
self._sended_request: OrderedDict[int,
|
|
81
|
+
self._sended_request: OrderedDict[int, SentRequestEntry] = OrderedDict()
|
|
82
82
|
self._received_request_lock = threading.RLock()
|
|
83
83
|
self._received_request: OrderedDict[int, asyncio.Future[Any]] = OrderedDict()
|
|
84
84
|
self._initialized = False
|
|
@@ -307,7 +307,7 @@ class DebugAdapterProtocol(JsonRPCProtocolBase):
|
|
|
307
307
|
result: Task[TResult] = Task()
|
|
308
308
|
|
|
309
309
|
with self._sended_request_lock:
|
|
310
|
-
self._sended_request[request.seq] =
|
|
310
|
+
self._sended_request[request.seq] = SentRequestEntry(result, return_type)
|
|
311
311
|
|
|
312
312
|
self.send_message(request)
|
|
313
313
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.6.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/default_capabilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/__init__.py
RENAMED
|
File without changes
|
{robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/cli.py
RENAMED
|
File without changes
|
{robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/client.py
RENAMED
|
File without changes
|
{robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/run.py
RENAMED
|
File without changes
|
{robotcode_debugger-1.6.0 → robotcode_debugger-1.7.0}/src/robotcode/debugger/launcher/server.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|