(zelf: PyRef<Self>)
| 223 | // TODO: wrong return type |
| 224 | #[pymethod] |
| 225 | fn values(zelf: PyRef<Self>) -> Vec<PyObjectRef> { |
| 226 | let vars = zelf.borrow_vars(); |
| 227 | vars.values().map(|value| value.to_owned()).collect() |
| 228 | } |
| 229 | |
| 230 | // TODO: wrong return type |
| 231 | #[pymethod] |
nothing calls this directly
no test coverage detected