Expand description
CPython interpreter management and foreign function execution.
This module owns the Python interpreter lifecycle and implements the core LanguageRuntime operations: init, compile, invoke, dispose.
When the pyo3 feature is enabled, this uses pyo3 to embed CPython.
Without it, all operations return stub errors.
Structs§
- Compiled
Function - Opaque handle to a compiled Python function.
- Python
Runtime - The Python runtime instance. One per
init()call.