(
cls, values, *, dtype: DtypeObj, copy: bool = False
)
| 332 | |
| 333 | @classmethod |
| 334 | def _coerce_to_array( |
| 335 | cls, values, *, dtype: DtypeObj, copy: bool = False |
| 336 | ) -> tuple[np.ndarray, np.ndarray]: |
| 337 | raise AbstractMethodError(cls) |
| 338 | |
| 339 | def _validate_setitem_value(self, value): |
| 340 | """ |
no test coverage detected