Return local time tuple compatible with time.localtime().
(self)
| 1143 | # __hash__ (and helpers) |
| 1144 | |
| 1145 | def timetuple(self): |
| 1146 | "Return local time tuple compatible with time.localtime()." |
| 1147 | return _build_struct_time(self._year, self._month, self._day, |
| 1148 | 0, 0, 0, -1) |
| 1149 | |
| 1150 | def toordinal(self): |
| 1151 | """Return proleptic Gregorian ordinal for the year, month and day. |
no test coverage detected