Return local time tuple compatible with time.localtime().
(self)
| 1073 | # __hash__ (and helpers) |
| 1074 | |
| 1075 | def timetuple(self): |
| 1076 | "Return local time tuple compatible with time.localtime()." |
| 1077 | return _build_struct_time(self._year, self._month, self._day, |
| 1078 | 0, 0, 0, -1) |
| 1079 | |
| 1080 | def toordinal(self): |
| 1081 | """Return proleptic Gregorian ordinal for the year, month and day. |
no test coverage detected