(&self, needle: &Py<ContextVar>)
| 147 | } |
| 148 | |
| 149 | fn get_inner(&self, needle: &Py<ContextVar>) -> Option<PyObjectRef> { |
| 150 | let vars = self.borrow_vars(); |
| 151 | vars.get(needle).map(|o| o.to_owned()) |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | #[pyclass(with(Constructor, AsMapping, AsSequence, Iterable))] |
no test coverage detected