(&self, scope: Scope, path: &str)
| 70 | /// Note: This is an internal function. Use `run_file` for the public interface. |
| 71 | #[doc(hidden)] |
| 72 | pub fn run_any_file(&self, scope: Scope, path: &str) -> PyResult<()> { |
| 73 | let path = if path.is_empty() { "???" } else { path }; |
| 74 | self.run_simple_file(scope, path) |
| 75 | } |
| 76 | |
| 77 | /// _PyRun_SimpleFileObject |
| 78 | /// |
no test coverage detected