diff --git a/src/shell.rs b/src/shell.rs index 04090a49f..f733e03dd 100644 --- a/src/shell.rs +++ b/src/shell.rs @@ -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())); diff --git a/vm/src/lib.rs b/vm/src/lib.rs index 8ae5ff15d..de0042c61 100644 --- a/vm/src/lib.rs +++ b/vm/src/lib.rs @@ -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