Return local time tuple compatible with time.localtime().
(self)
| 1158 | # __hash__ (and helpers) |
| 1159 | |
| 1160 | def timetuple(self): |
| 1161 | "Return local time tuple compatible with time.localtime()." |
| 1162 | return _build_struct_time(self._year, self._month, self._day, |
| 1163 | 0, 0, 0, -1) |
| 1164 | |
| 1165 | def toordinal(self): |
| 1166 | """Return proleptic Gregorian ordinal for the year, month and day. |
no test coverage detected