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
string
  • Loading branch information
youknowone committed Dec 11, 2025
commit 7ee01187f3a08d1276602a71ca1dad2af1963e49
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ fn run_rustpython(vm: &VirtualMachine, run_mode: RunMode) -> PyResult<()> {
let res = match run_mode {
RunMode::Command(command) => {
debug!("Running command {command}");
vm.run_code_string(scope.clone(), &command, "<stdin>".to_owned())
vm.run_code_string(scope.clone(), &command, "<string>".to_owned())
.map(drop)
}
RunMode::Module(module) => {
Expand Down