(vm: &VirtualMachine, zelf: PyObjectRef)
| 135 | |
| 136 | #[pymember] |
| 137 | fn __objclass__(vm: &VirtualMachine, zelf: PyObjectRef) -> PyResult { |
| 138 | let zelf: &Py<Self> = zelf.try_to_value(vm)?; |
| 139 | Ok(unsafe { zelf.class.borrow_static() }.to_owned().into()) |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | impl Representable for PyGetSet { |
nothing calls this directly
no test coverage detected