(
_cls: &Py<PyType>,
Self::Args { data, selectors }: Self::Args,
_vm: &VirtualMachine,
)
| 139 | type Args = CompressNewArgs; |
| 140 | |
| 141 | fn py_new( |
| 142 | _cls: &Py<PyType>, |
| 143 | Self::Args { data, selectors }: Self::Args, |
| 144 | _vm: &VirtualMachine, |
| 145 | ) -> PyResult<Self> { |
| 146 | Ok(Self { data, selectors }) |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | #[pyclass(with(IterNext, Iterable, Constructor), flags(BASETYPE))] |
nothing calls this directly
no test coverage detected