Construct a date from the ISO year, week number and weekday. This is the inverse of the date.isocalendar() function
(cls, year, week, day)
| 992 | |
| 993 | @classmethod |
| 994 | def fromisocalendar(cls, year, week, day): |
| 995 | """Construct a date from the ISO year, week number and weekday. |
| 996 | |
| 997 | This is the inverse of the date.isocalendar() function""" |
| 998 | return cls(*_isoweek_to_gregorian(year, week, day)) |
| 999 | |
| 1000 | # Conversions to string |
| 1001 |
nothing calls this directly
no test coverage detected