()
| 1 | use rustpython::{InterpreterBuilder, InterpreterBuilderExt}; |
| 2 | |
| 3 | pub fn main() -> std::process::ExitCode { |
| 4 | let mut config = InterpreterBuilder::new(); |
| 5 | #[cfg(feature = "stdlib")] |
| 6 | { |
| 7 | config = config.init_stdlib(); |
| 8 | } |
| 9 | rustpython::run(config) |
| 10 | } |
nothing calls this directly
no test coverage detected