(zelf: &Py<Self>)
| 216 | // TODO: wrong return type |
| 217 | #[pymethod] |
| 218 | fn keys(zelf: &Py<Self>) -> Vec<PyObjectRef> { |
| 219 | let vars = zelf.borrow_vars(); |
| 220 | vars.keys().map(|key| key.to_owned().into()).collect() |
| 221 | } |
| 222 | |
| 223 | // TODO: wrong return type |
| 224 | #[pymethod] |
no test coverage detected