Construct a date from the ISO year, week number and weekday. This is the inverse of the date.isocalendar() function
(cls, year, week, day)
| 1065 | |
| 1066 | @classmethod |
| 1067 | def fromisocalendar(cls, year, week, day): |
| 1068 | """Construct a date from the ISO year, week number and weekday. |
| 1069 | |
| 1070 | This is the inverse of the date.isocalendar() function""" |
| 1071 | return cls(*_isoweek_to_gregorian(year, week, day)) |
| 1072 | |
| 1073 | @classmethod |
| 1074 | def strptime(cls, date_string, format): |