(cls, scalars, *, dtype=None, copy: bool = False)
| 336 | |
| 337 | @classmethod |
| 338 | def _from_sequence(cls, scalars, *, dtype=None, copy: bool = False) -> Self: |
| 339 | return cls._from_sequence_not_strict(scalars, dtype=dtype, copy=copy) |
| 340 | |
| 341 | @classmethod |
| 342 | def _from_sequence_not_strict( |
no test coverage detected