(
zelf: PyRef<Self>,
vm: &VirtualMachine,
)
| 762 | |
| 763 | #[pymethod] |
| 764 | fn __reduce__( |
| 765 | zelf: PyRef<Self>, |
| 766 | vm: &VirtualMachine, |
| 767 | ) -> PyResult<(PyTypeRef, PyTupleRef, Option<PyDictRef>)> { |
| 768 | reduce_set(zelf.as_ref(), vm) |
| 769 | } |
| 770 | |
| 771 | #[pyclassmethod] |
| 772 | fn __class_getitem__(cls: PyTypeRef, args: PyObjectRef, vm: &VirtualMachine) -> PyGenericAlias { |
nothing calls this directly
no test coverage detected