Return the date part.
(self)
| 2028 | return _build_struct_time(y, m, d, hh, mm, ss, 0) |
| 2029 | |
| 2030 | def date(self): |
| 2031 | "Return the date part." |
| 2032 | return date(self._year, self._month, self._day) |
| 2033 | |
| 2034 | def time(self): |
| 2035 | "Return the time part, with tzinfo None." |