(self, x)
| 1295 | raise NotImplementedError |
| 1296 | |
| 1297 | def __call__(self, x): |
| 1298 | if isnat(x): |
| 1299 | return self._nat |
| 1300 | else: |
| 1301 | return self._format % self._format_non_nat(x) |
| 1302 | |
| 1303 | |
| 1304 | class DatetimeFormat(_TimelikeFormat): |
nothing calls this directly
no test coverage detected