(_cls: &Py<PyType>, _args: Self::Args, _vm: &VirtualMachine)
| 90 | } |
| 91 | |
| 92 | fn py_new(_cls: &Py<PyType>, _args: Self::Args, _vm: &VirtualMachine) -> PyResult<Self> { |
| 93 | // This is never called because we override slot_new |
| 94 | Ok(PyPlaceholderType) |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | #[pyclass(with(Constructor, Representable))] |
nothing calls this directly
no test coverage detected