(self, orient)
| 265 | self.datetimelike_df = self.int_df.astype("timedelta64[ns]") |
| 266 | |
| 267 | def time_to_dict_ints(self, orient): |
| 268 | self.int_df.to_dict(orient=orient) |
| 269 | |
| 270 | def time_to_dict_datetimelike(self, orient): |
| 271 | self.datetimelike_df.to_dict(orient=orient) |