Return the time part, with same tzinfo.
(self)
| 2076 | return time(self.hour, self.minute, self.second, self.microsecond, fold=self.fold) |
| 2077 | |
| 2078 | def timetz(self): |
| 2079 | "Return the time part, with same tzinfo." |
| 2080 | return time(self.hour, self.minute, self.second, self.microsecond, |
| 2081 | self._tzinfo, fold=self.fold) |
| 2082 | |
| 2083 | def replace(self, year=None, month=None, day=None, hour=None, |
| 2084 | minute=None, second=None, microsecond=None, tzinfo=True, |