MCPcopy Index your code
hub / github.com/RustPython/RustPython / compile_exec

Function compile_exec

crates/codegen/src/compile.rs:10735–10738  ·  view source on GitHub ↗
(source: &str)

Source from the content-addressed store, hash-verified

10733 }
10734
10735 fn compile_exec(source: &str) -> CodeObject {
10736 let opts = CompileOpts::default();
10737 compile_exec_with_options(source, opts)
10738 }
10739
10740 fn compile_exec_optimized(source: &str) -> CodeObject {
10741 let opts = CompileOpts {

Calls 1