(self)
| 508 | ) |
| 509 | |
| 510 | def test_formatmonthname_without_year(self): |
| 511 | self.assertEqual( |
| 512 | calendar.HTMLCalendar().formatmonthname(2004, 1, withyear=False), |
| 513 | '<tr><th colspan="7" class="month">January</th></tr>' |
| 514 | ) |
| 515 | |
| 516 | def test_prweek(self): |
| 517 | with support.captured_stdout() as out: |
nothing calls this directly
no test coverage detected