rustpython-compiler-core 0.5.0

RustPython specific bytecode.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![no_std]
#![doc(html_logo_url = "https://raw.githubusercontent.com/RustPython/RustPython/main/logo.png")]
#![doc(html_root_url = "https://docs.rs/rustpython-compiler-core/")]

extern crate alloc;

pub mod bytecode;
pub mod frozen;
pub mod marshal;
mod mode;
pub mod varint;

pub use mode::Mode;

pub use ruff_source_file::{
    LineIndex, OneIndexed, PositionEncoding, SourceFile, SourceFileBuilder, SourceLocation,
};