Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions pyisolate/supervisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,9 @@ def _normalize_backend(backend: str) -> BackendMode:
def _require_implemented_backend(backend: BackendMode) -> None:
if backend in IMPLEMENTED_BACKENDS:
return
implemented = ", ".join(repr(b) for b in IMPLEMENTED_BACKENDS)
raise NotImplementedError(
f"backend={backend!r} is an explicit isolation mode, but this build only "
"implements backend='subinterpreter'. Use an external process or microVM "
"launcher until the native backend is available."
f"backend={backend!r} is not implemented; this build implements {implemented}."
)


Expand Down
Loading