(self, x)
| 1322 | super().__init__(x) |
| 1323 | |
| 1324 | def __call__(self, x): |
| 1325 | if self.legacy <= 113: |
| 1326 | return self._format_non_nat(x) |
| 1327 | return super().__call__(x) |
| 1328 | |
| 1329 | def _format_non_nat(self, x): |
| 1330 | return "'%s'" % datetime_as_string(x, |
nothing calls this directly
no test coverage detected