(vm: &VirtualMachine, args: FuncArgs)
| 301 | impl PyBaseObject { |
| 302 | #[pymethod(raw)] |
| 303 | fn __getstate__(vm: &VirtualMachine, args: FuncArgs) -> PyResult { |
| 304 | let (zelf,): (PyObjectRef,) = args.bind(vm)?; |
| 305 | object_getstate_default(&zelf, false, vm) |
| 306 | } |
| 307 | |
| 308 | #[pyslot] |
| 309 | fn slot_richcompare( |
nothing calls this directly
no test coverage detected