Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fmt
  • Loading branch information
ShaharNaveh committed Mar 26, 2026
commit eefe09351c4e43cc59370bf8f13ee8e8b7d16aa4
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub unsafe extern "C" fn eval(s: *const u8, l: usize) -> i32 {
let result = interpreter.enter(|vm| {
let scope = vm.new_scope_with_builtins();
let res = match vm.run_block_expr(scope, src) {
Ok(val) => val,
Ok(val) => val,
Err(_) => return Err(-1), // Python execution error
};
let repr_str = match res.repr(vm) {
Expand Down
Loading