robotcode-debugger 2.1.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_debugger-2.1.0 → robotcode_debugger-2.3.0}/PKG-INFO +1 -1
- robotcode_debugger-2.3.0/src/robotcode/debugger/__version__.py +1 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/debugger.py +4 -2
- robotcode_debugger-2.1.0/src/robotcode/debugger/__version__.py +0 -1
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/.gitignore +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/README.md +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/pyproject.toml +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/__init__.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/cli.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/dap_types.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/default_capabilities.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/hooks.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/id_manager.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/__init__.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/cli.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/client.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/run.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/server.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/listeners.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/mixins.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/protocol.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/py.typed +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/run.py +0 -0
- {robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/server.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "2.3.0"
|
|
@@ -839,8 +839,10 @@ class Debugger:
|
|
|
839
839
|
while True:
|
|
840
840
|
with self.condition:
|
|
841
841
|
self.condition.wait_for(
|
|
842
|
-
lambda:
|
|
843
|
-
|
|
842
|
+
lambda: (
|
|
843
|
+
self.state in [State.Running, State.Stopped, State.CallKeyword]
|
|
844
|
+
or self.requested_state != RequestedState.Nothing
|
|
845
|
+
)
|
|
844
846
|
)
|
|
845
847
|
|
|
846
848
|
if self.state == State.CallKeyword:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "2.1.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/default_capabilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/__init__.py
RENAMED
|
File without changes
|
{robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/cli.py
RENAMED
|
File without changes
|
{robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/client.py
RENAMED
|
File without changes
|
{robotcode_debugger-2.1.0 → robotcode_debugger-2.3.0}/src/robotcode/debugger/launcher/run.py
RENAMED
|
File without changes
|
{robotcode_debugger-2.1.0 → robotcode_debugger-2.3.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
|
|
File without changes
|