(self)
| 225 | return cast(ArrowExtensionArray, self._parent.array)._dt_to_pytimedelta() |
| 226 | |
| 227 | def to_pydatetime(self) -> Series: |
| 228 | # GH#20306 |
| 229 | return cast(ArrowExtensionArray, self._parent.array)._dt_to_pydatetime() |
| 230 | |
| 231 | def isocalendar(self) -> DataFrame: |
| 232 | from pandas import DataFrame |
nothing calls this directly
no test coverage detected