(month)
| 180 | |
| 181 | |
| 182 | def _validate_month(month): |
| 183 | if not 1 <= month <= 12: |
| 184 | raise IllegalMonthError(month) |
| 185 | |
| 186 | def monthrange(year, month): |
| 187 | """Return weekday of first day of month (0-6 ~ Mon-Sun) |
no test coverage detected
searching dependent graphs…