#[deprecated(note = "use rustpython::run_file instead; if this changes causes problems, please report an issue.")]
(&self, scope: Scope, path: &str)
| 122 | |
| 123 | // #[deprecated(note = "use rustpython::run_file instead; if this changes causes problems, please report an issue.")] |
| 124 | pub fn run_script(&self, scope: Scope, path: &str) -> PyResult<()> { |
| 125 | self.run_any_file(scope, path) |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | fn set_main_loader( |
nothing calls this directly
no test coverage detected