isolate 0.26.7__tar.gz → 0.26.8__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.
- {isolate-0.26.7/src/isolate.egg-info → isolate-0.26.8}/PKG-INFO +1 -1
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/_isolate_version.py +3 -3
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/common.py +4 -0
- {isolate-0.26.7 → isolate-0.26.8/src/isolate.egg-info}/PKG-INFO +1 -1
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_serialization.py +1 -0
- {isolate-0.26.7 → isolate-0.26.8}/.github/workflows/claude-code-review.yml +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/.github/workflows/claude.yml +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/.github/workflows/lint.yml +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/.github/workflows/release.yml +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/.github/workflows/test.yml +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/.gitignore +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/.pre-commit-config.yaml +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/LICENSE +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/README.md +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/pyproject.toml +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/setup.cfg +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/_version.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/_base.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/common.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/conda.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/container.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/local.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/pyenv.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/remote.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/settings.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/backends/virtualenv.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/common/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/common/timestamp.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/_local/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/_local/_base.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/_local/agent_startup.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/_base.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/agent.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/configuration.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/agent.proto +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/agent_pb2.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/agent_pb2.pyi +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/agent_pb2_grpc.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/common.proto +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/common_pb2.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/common_pb2.pyi +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/common_pb2_grpc.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/interface.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/ipc/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/ipc/_base.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/ipc/agent.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/logger.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/logs.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/py.typed +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/registry.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/definitions/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/definitions/server.proto +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/definitions/server_pb2.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/definitions/server_pb2.pyi +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/definitions/server_pb2_grpc.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/health/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/health/health.proto +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/health/health_pb2.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/health/health_pb2.pyi +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/health/health_pb2_grpc.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/health_server.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/interface.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate/server/server.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate.egg-info/SOURCES.txt +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate.egg-info/dependency_links.txt +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate.egg-info/entry_points.txt +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate.egg-info/requires.txt +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/src/isolate.egg-info/top_level.txt +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/__init__.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/conftest.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_agent_backward_compatibility.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_backends.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_concurrency.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_connections.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_connections_grpc_base.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_isolate.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_log.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_log_masking.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_logged_io_pipe.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_logger.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_server.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tests/test_shutdown.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tools/Dockerfile +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tools/agent_requirements.txt +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tools/isolate_client.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tools/protobuf-requirements.txt +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tools/regen_grpc.py +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tools/requirements.txt +0 -0
- {isolate-0.26.7 → isolate-0.26.8}/tools/test_agent_requirements.txt +0 -0
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.26.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 26,
|
|
31
|
+
__version__ = version = '0.26.8'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 26, 8)
|
|
33
33
|
|
|
34
|
-
__commit_id__ = commit_id = '
|
|
34
|
+
__commit_id__ = commit_id = 'ge1f994002'
|
|
@@ -35,6 +35,7 @@ class ExceptionDeserializationError(SerializationError):
|
|
|
35
35
|
module that defines its type isn't importable here)."""
|
|
36
36
|
|
|
37
37
|
original_traceback: TracebackType | None
|
|
38
|
+
original_stringized_traceback: str | None
|
|
38
39
|
|
|
39
40
|
|
|
40
41
|
# NOTE: tblib's install() will search for BaseException subclasses,
|
|
@@ -94,9 +95,12 @@ def load_serialized_object(
|
|
|
94
95
|
# We were trying to reconstruct a remote exception but its type
|
|
95
96
|
# isn't importable here, so loads() failed. Surface the genuine
|
|
96
97
|
# local cause along with the remote traceback.
|
|
98
|
+
# Keep both traceback forms: Traceback.from_string() preserves
|
|
99
|
+
# frames, while the string also includes the exception type/message.
|
|
97
100
|
raise ExceptionDeserializationError(
|
|
98
101
|
exc.message,
|
|
99
102
|
original_traceback=_prepare_traceback(stringized_traceback),
|
|
103
|
+
original_stringized_traceback=stringized_traceback,
|
|
100
104
|
) from exc.__cause__
|
|
101
105
|
raise
|
|
102
106
|
|
|
@@ -70,6 +70,7 @@ def test_deserialize_raised_exception_with_unimportable_type_preserves_traceback
|
|
|
70
70
|
|
|
71
71
|
assert exc_info.value.message == "Error while deserializing the given object"
|
|
72
72
|
assert exc_info.value.original_traceback is not None
|
|
73
|
+
assert exc_info.value.original_stringized_traceback == stringized_traceback
|
|
73
74
|
assert isinstance(exc_info.value.__cause__, ModuleNotFoundError)
|
|
74
75
|
|
|
75
76
|
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/agent_pb2_grpc.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{isolate-0.26.7 → isolate-0.26.8}/src/isolate/connections/grpc/definitions/common_pb2_grpc.py
RENAMED
|
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
|
|
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
|