(cls, shape, dtype)
| 807 | |
| 808 | @classmethod |
| 809 | def _empty(cls, shape, dtype) -> StringArray: |
| 810 | values = np.empty(shape, dtype=object) |
| 811 | values[:] = dtype.na_value |
| 812 | return cls(values, dtype=dtype).astype(dtype, copy=False) |
| 813 | |
| 814 | def __arrow_array__(self, type=None): |
| 815 | """ |