(self, format_spec)
| 331 | self.dt = dt |
| 332 | |
| 333 | def __format__(self, format_spec): |
| 334 | if format_spec == "": |
| 335 | format_spec = ISO_FORMAT_NO_USECS |
| 336 | return self.dt.__format__(format_spec) |
| 337 | |
| 338 | |
| 339 | class PlaceholderError(Error): |
nothing calls this directly
no test coverage detected