(self)
| 2198 | self.theclass.fromisocalendar(*isocal) |
| 2199 | |
| 2200 | def test_strptime_F_format(self): |
| 2201 | test_date = "2025-10-26" |
| 2202 | self.assertEqual( |
| 2203 | self.theclass.strptime(test_date, "%F"), |
| 2204 | self.theclass.strptime(test_date, "%Y-%m-%d") |
| 2205 | ) |
| 2206 | |
| 2207 | def test_strptime_D_format(self): |
| 2208 | test_date = "11/28/25" |
nothing calls this directly
no test coverage detected