Return the time part, with same tzinfo.
(self)
| 1924 | return time(self.hour, self.minute, self.second, self.microsecond, fold=self.fold) |
| 1925 | |
| 1926 | def timetz(self): |
| 1927 | "Return the time part, with same tzinfo." |
| 1928 | return time(self.hour, self.minute, self.second, self.microsecond, |
| 1929 | self._tzinfo, fold=self.fold) |
| 1930 | |
| 1931 | def replace(self, year=None, month=None, day=None, hour=None, |
| 1932 | minute=None, second=None, microsecond=None, tzinfo=True, |