(&self, id: PyObjectRef, vm: &VirtualMachine)
| 408 | } |
| 409 | |
| 410 | fn get_group(&self, id: PyObjectRef, vm: &VirtualMachine) -> PyResult<Option<String>> { |
| 411 | let bounds = self.get_bounds(id, vm)?; |
| 412 | Ok(bounds.map(|b| self.subgroup(b))) |
| 413 | } |
| 414 | |
| 415 | #[pymethod] |
| 416 | fn group(&self, groups: PosArgs, vm: &VirtualMachine) -> PyResult { |
no test coverage detected