Return the time part, with tzinfo None.
(self)
| 2072 | return date(self._year, self._month, self._day) |
| 2073 | |
| 2074 | def time(self): |
| 2075 | "Return the time part, with tzinfo None." |
| 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." |