This commit is contained in:
Jeong YunWon
2025-04-05 00:14:03 +09:00
parent 5c854fc690
commit 36cce6b174
2 changed files with 1 additions and 2 deletions

View File

@@ -71,7 +71,6 @@ fn shell_exec(
}
}
/// Enter a repl loop
pub fn run_shell(vm: &VirtualMachine, scope: Scope) -> PyResult<()> {
let mut repl = Readline::new(helper::ShellHelper::new(vm, scope.globals.clone()));

View File

@@ -3,7 +3,7 @@
//! - Interpreter
//! - Import mechanics
//! - Base objects
//!
//!
//! Some stdlib modules are implemented here, but most of them are in the `rustpython-stdlib` module. The
// to allow `mod foo {}` in foo.rs; clippy thinks this is a mistake/misunderstanding of