Skip to documentation
SLOP

tiny.python.runtime

Reference tiny.python runtime

Defined in tiny.python.

The package's last stage runs a compiled program and hands its value back to the caller.

API (5)

Actions

Public operations.

Types and contracts

Public types and contracts.

Namespaces

Public namespaces.

No direct callersNo direct callstiny.pythonruntime
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/python/src/root.zig:93

zig
pub const runtime = @import("runtime/root.zig");

Source: lib/python/src/runtime/root.zig

zig
//! The package's last stage runs a compiled program and hands its value back to the caller. A//! caller wants one call that takes source text and returns the program's value, with the memory//! behind that value freed in one step.//!//! The namespace re-exports the file `vm` and its `Vm`, `Error`, `Result` and `execute`. A caller//! runs a program with `execute` and frees the result with `deinit`.pub const vm = @import("vm.zig");pub const Vm = vm.Vm;pub const Error = vm.Error;pub const Result = vm.Result;pub const execute = vm.execute;

Audit

Definitions1
Public names1
Members0
Version26.7.0
Revisiondaab053ee433