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