Return the time part, with tzinfo None.
(self)
| 2032 | return date(self._year, self._month, self._day) |
| 2033 | |
| 2034 | def time(self): |
| 2035 | "Return the time part, with tzinfo None." |
| 2036 | return time(self.hour, self.minute, self.second, self.microsecond, fold=self.fold) |
| 2037 | |
| 2038 | def timetz(self): |
| 2039 | "Return the time part, with same tzinfo." |