(&self, scope: Scope, source: &str, source_path: String)
| 41 | |
| 42 | #[deprecated(note = "use run_string instead")] |
| 43 | pub fn run_code_string(&self, scope: Scope, source: &str, source_path: String) -> PyResult { |
| 44 | self.run_string(scope, source, source_path) |
| 45 | } |
| 46 | |
| 47 | pub fn run_block_expr(&self, scope: Scope, source: &str) -> PyResult { |
| 48 | let code_obj = self |
nothing calls this directly
no test coverage detected