(zelf: PyRef<Self>, set: AnySet, vm: &VirtualMachine)
| 751 | } |
| 752 | |
| 753 | fn __ixor__(zelf: PyRef<Self>, set: AnySet, vm: &VirtualMachine) -> PyResult<PyRef<Self>> { |
| 754 | if set.is(zelf.as_object()) { |
| 755 | zelf.inner.clear(); |
| 756 | } else { |
| 757 | zelf.inner |
| 758 | .symmetric_difference_update(set.into_iterable_iter(vm)?, vm)?; |
| 759 | } |
| 760 | Ok(zelf) |
| 761 | } |
| 762 | |
| 763 | #[pymethod] |
| 764 | fn __reduce__( |
nothing calls this directly
no test coverage detected