Return the date part.
(self)
| 2068 | return _build_struct_time(y, m, d, hh, mm, ss, 0) |
| 2069 | |
| 2070 | def date(self): |
| 2071 | "Return the date part." |
| 2072 | return date(self._year, self._month, self._day) |
| 2073 | |
| 2074 | def time(self): |
| 2075 | "Return the time part, with tzinfo None." |