Construct a date from the ISO year, week number and weekday. This is the inverse of the date.isocalendar() function
(cls, year, week, day)
| 1056 | |
| 1057 | @classmethod |
| 1058 | def fromisocalendar(cls, year, week, day): |
| 1059 | """Construct a date from the ISO year, week number and weekday. |
| 1060 | |
| 1061 | This is the inverse of the date.isocalendar() function""" |
| 1062 | return cls(*_isoweek_to_gregorian(year, week, day)) |
| 1063 | |
| 1064 | @classmethod |
| 1065 | def strptime(cls, date_string, format): |