Return the time part, with tzinfo None.
(self)
| 1920 | return date(self._year, self._month, self._day) |
| 1921 | |
| 1922 | def time(self): |
| 1923 | "Return the time part, with tzinfo None." |
| 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." |