(&self, vm: &VirtualMachine)
| 317 | |
| 318 | #[pymethod] |
| 319 | fn get_namespaces(&self, vm: &VirtualMachine) -> PyResult<Vec<PyObjectRef>> { |
| 320 | let namespaces = self |
| 321 | .namespaces |
| 322 | .iter() |
| 323 | .map(|table| to_py_symbol_table(table.clone()).into_pyobject(vm)) |
| 324 | .collect(); |
| 325 | Ok(namespaces) |
| 326 | } |
| 327 | |
| 328 | #[pymethod] |
| 329 | fn get_namespace(&self, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected