isolate 0.12.13__tar.gz → 0.12.14__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.
Potentially problematic release.
This version of isolate might be problematic. Click here for more details.
- {isolate-0.12.13 → isolate-0.12.14}/PKG-INFO +1 -1
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/_isolate_version.py +2 -2
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/common.py +1 -3
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate.egg-info/PKG-INFO +1 -1
- {isolate-0.12.13 → isolate-0.12.14}/.github/workflows/release.yml +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/.github/workflows/test.yml +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/.gitignore +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/.pre-commit-config.yaml +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/LICENSE +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/README.md +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/pyproject.toml +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/setup.cfg +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/_version.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/_base.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/common.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/conda.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/local.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/pyenv.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/remote.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/settings.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/backends/virtualenv.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/common/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/common/timestamp.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/_local/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/_local/_base.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/_local/agent_startup.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/_base.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/agent.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/configuration.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/agent.proto +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/agent_pb2.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/agent_pb2.pyi +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/agent_pb2_grpc.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/common.proto +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/common_pb2.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/common_pb2.pyi +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/common_pb2_grpc.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/interface.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/ipc/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/ipc/_base.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/connections/ipc/agent.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/exceptions.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/logs.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/py.typed +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/registry.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/definitions/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/definitions/server.proto +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/definitions/server_pb2.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/definitions/server_pb2.pyi +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/definitions/server_pb2_grpc.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/health/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/health/health.proto +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/health/health_pb2.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/health/health_pb2.pyi +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/health/health_pb2_grpc.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/health_server.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/interface.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate/server/server.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate.egg-info/SOURCES.txt +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate.egg-info/dependency_links.txt +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate.egg-info/entry_points.txt +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate.egg-info/requires.txt +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/src/isolate.egg-info/top_level.txt +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/__init__.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/conftest.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/test_backends.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/test_concurrency.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/test_connections.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/test_isolate.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/test_log.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/test_serialization.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tests/test_server.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tools/Dockerfile +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tools/agent_requirements.txt +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tools/protobuf-requirements.txt +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tools/regen_grpc.py +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tools/requirements.txt +0 -0
- {isolate-0.12.13 → isolate-0.12.14}/tools/test_agent_requirements.txt +0 -0
|
@@ -2,7 +2,6 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
import importlib
|
|
4
4
|
import os
|
|
5
|
-
from dataclasses import dataclass
|
|
6
5
|
from typing import TYPE_CHECKING, Any, cast
|
|
7
6
|
|
|
8
7
|
from tblib import Traceback, TracebackParseError
|
|
@@ -21,11 +20,10 @@ if TYPE_CHECKING:
|
|
|
21
20
|
AGENT_SIGNATURE = "IS_ISOLATE_AGENT"
|
|
22
21
|
|
|
23
22
|
|
|
24
|
-
@dataclass
|
|
25
23
|
class BaseSerializationError(IsolateException):
|
|
26
24
|
"""An error that happened during the serialization process."""
|
|
27
25
|
|
|
28
|
-
|
|
26
|
+
pass
|
|
29
27
|
|
|
30
28
|
|
|
31
29
|
class SerializationError(BaseSerializationError):
|
|
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.12.13 → isolate-0.12.14}/src/isolate/connections/grpc/definitions/agent_pb2_grpc.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{isolate-0.12.13 → isolate-0.12.14}/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
|