(zelf: PyRef<Self>, set: AnySet, vm: &VirtualMachine)
| 695 | } |
| 696 | |
| 697 | fn __ior__(zelf: PyRef<Self>, set: AnySet, vm: &VirtualMachine) -> PyResult<PyRef<Self>> { |
| 698 | zelf.inner.update(set.into_iterable_iter(vm)?, vm)?; |
| 699 | Ok(zelf) |
| 700 | } |
| 701 | |
| 702 | #[pymethod] |
| 703 | fn update(&self, others: PosArgs<PyObjectRef>, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected