We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c854fc commit 36cce6bCopy full SHA for 36cce6b
2 files changed
src/shell.rs
@@ -71,7 +71,6 @@ fn shell_exec(
71
}
72
73
74
-
75
/// Enter a repl loop
76
pub fn run_shell(vm: &VirtualMachine, scope: Scope) -> PyResult<()> {
77
let mut repl = Readline::new(helper::ShellHelper::new(vm, scope.globals.clone()));
vm/src/lib.rs
@@ -3,7 +3,7 @@
3
//! - Interpreter
4
//! - Import mechanics
5
//! - Base objects
6
-//!
+//!
7
//! Some stdlib modules are implemented here, but most of them are in the `rustpython-stdlib` module. The
8
9
// to allow `mod foo {}` in foo.rs; clippy thinks this is a mistake/misunderstanding of
0 commit comments