(_cls: &Py<PyType>, _args: Self::Args, _vm: &VirtualMachine)
| 74 | } |
| 75 | |
| 76 | fn py_new(_cls: &Py<PyType>, _args: Self::Args, _vm: &VirtualMachine) -> PyResult<Self> { |
| 77 | unreachable!("NoDefault is a singleton, use slot_new") |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | impl Representable for NoDefault { |
nothing calls this directly
no test coverage detected