(self, x)
| 1391 | raise NotImplementedError |
| 1392 | |
| 1393 | def __call__(self, x): |
| 1394 | if isnat(x): |
| 1395 | return self._nat |
| 1396 | else: |
| 1397 | return self._format % self._format_non_nat(x) |
| 1398 | |
| 1399 | |
| 1400 | class DatetimeFormat(_TimelikeFormat): |
nothing calls this directly
no test coverage detected