(self, format_spec)
| 1657 | # check that a derived class's strftime gets called |
| 1658 | class B(self.theclass): |
| 1659 | def strftime(self, format_spec): |
| 1660 | return 'B' |
| 1661 | b = B(2007, 9, 10) |
| 1662 | self.assertEqual(b.__format__(''), str(dt)) |
| 1663 |
no outgoing calls
no test coverage detected