(self, x, pos=0)
| 585 | self._usetex = mpl._val_or_rc(usetex, 'text.usetex') |
| 586 | |
| 587 | def __call__(self, x, pos=0): |
| 588 | result = num2date(x, self.tz).strftime(self.fmt) |
| 589 | return _wrap_in_tex(result) if self._usetex else result |
| 590 | |
| 591 | def set_tzinfo(self, tz): |
| 592 | self.tz = _get_tzinfo(tz) |
nothing calls this directly
no test coverage detected